summaryrefslogtreecommitdiffstats
path: root/package/wipe/wipe.mk
blob: 54283f9120aa8a684bed70a70f35625f805f5abc (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
25
26
27
28
29
30
31
32
33
34
35
36
#############################################################
#
# wipe
#
#############################################################

WIPE_VERSION = 0.22
WIPE_SITE = http://lambda-diode.com/resources/wipe
WIPE_CFLAGS = $(TARGET_CFLAGS) -DHAVE_DEV_URANDOM -DHAVE_OSYNC -DHAVE_STRCASECMP -DHAVE_RANDOM -DSYNC_WAITS_FOR_SYNC -DFIND_DEVICE_SIZE_BY_BLKGETSIZE

ifeq ($(BR2_LARGEFILE),y)
WIPE_CFLAGS += -DSIXTYFOUR
endif

define WIPE_BUILD_CMDS
	# Fix busted git version logic
	$(SED) "s/which/!which/" $(@D)/Makefile
	$(MAKE) -C $(@D) linux CC_LINUX="$(TARGET_CC)" \
		CCO_LINUX="$(WIPE_CFLAGS)"
endef

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

define WIPE_CLEAN_CMDS
	$(MAKE) -C $(@D) clean
endef

$(eval $(call GENTARGETS))