2006-01-23 19:12:10 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# wipe
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2012-03-11 22:48:07 +01:00
|
|
|
WIPE_VERSION = 2.3.1
|
2012-08-26 01:52:48 +02:00
|
|
|
WIPE_SITE = http://downloads.sourceforge.net/project/wipe/wipe/$(WIPE_VERSION)
|
2012-03-11 22:48:07 +01:00
|
|
|
WIPE_SOURCE = wipe-$(WIPE_VERSION).tar.bz2
|
|
|
|
WIPE_AUTORECONF = YES
|
2006-01-23 19:12:10 +01:00
|
|
|
|
2011-01-11 18:26:26 +01:00
|
|
|
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
|
2006-01-23 19:12:10 +01:00
|
|
|
|
2011-01-11 18:26:26 +01:00
|
|
|
define WIPE_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/wipe
|
|
|
|
rm -f $(TARGET_DIR)/usr/share/man/man1/wipe.1
|
|
|
|
endef
|
2006-01-23 19:12:10 +01:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|