summaryrefslogtreecommitdiffstats
path: root/package/wipe/wipe.mk
blob: c3d4f67303cb476415b67485f27614cfcc2be2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
################################################################################
#
# wipe
#
################################################################################

WIPE_VERSION = 2.3.1
WIPE_SITE = http://downloads.sourceforge.net/project/wipe/wipe/$(WIPE_VERSION)
WIPE_SOURCE = wipe-$(WIPE_VERSION).tar.bz2
WIPE_AUTORECONF = YES
WIPE_LICENSE = GPLv2+
WIPE_LICENSE_FILES = LICENSE

define WIPE_INSTALL_TARGET_CMDS
	$(INSTALL) -D $(@D)/wipe $(TARGET_DIR)/usr/bin/wipe
	$(INSTALL) -D $(@D)/wipe.1 $(TARGET_DIR)/usr/share/man/man1/wipe.1
endef

define WIPE_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/usr/bin/wipe
	rm -f $(TARGET_DIR)/usr/share/man/man1/wipe.1
endef

$(eval $(autotools-package))