blob: 84053d31457cdb7e4a7d2e4d9fbb941650fd6651 (
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
37
38
39
40
41
42
|
include $(TOPDIR)/rules.mk
PKG_NAME:=wipe
PKG_VERSION:=0.24
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/berke/$(PKG_NAME)/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=aefb4403333562f9af5e3e03ecbba4b124e98788c688662240f9b04d80bfdb2f
PKG_MAINTAINER:=Toni Uhlig <matzeton@googlemail.com>
PKG_LICENSE:=GPL-2.0-only
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/wipe
SECTION:=utils
CATEGORY:=Utilities
TITLE:=securely erase files
URL:=http://lambda-diode.com/software/wipe/
endef
define Package/wipe/description
wipe is a little command for securely erasing files from magnetic media.
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) linux \
CC_LINUX="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
CPPFLAGS="$(TARGET_CPPFLAGS)"
endef
define Package/wipe/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wipe $(1)/usr/bin/
endef
$(eval $(call BuildPackage,wipe))
|