cd9a19432fe6616364e27e4990c1296ec0805be0
[openwrt/staging/dedeckeh.git] / package / system / fstools / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=fstools
11 PKG_VERSION:=2014-06-22
12
13 PKG_RELEASE=$(PKG_SOURCE_VERSION)
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://nbd.name/fstools.git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_VERSION:=e0430f5c62f367e5a8e02755412977b02c3fc45e
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
20 CMAKE_INSTALL:=1
21
22 PKG_LICENSE:=GPLv2
23 PKG_LICENSE_FILES:=
24
25 PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
26
27 include $(INCLUDE_DIR)/package.mk
28 include $(INCLUDE_DIR)/cmake.mk
29
30 TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
31
32 define Package/fstools
33 SECTION:=base
34 CATEGORY:=Base system
35 DEPENDS:=+ubox +USE_EGLIBC:librt +NAND_SUPPORT:ubi-utils
36 TITLE:=OpenWrt filesystem tools
37 endef
38
39 define Package/block-mount
40 SECTION:=base
41 CATEGORY:=Base system
42 TITLE:=Block device mounting and checking
43 DEPENDS:=+ubox +libubox +libuci
44 endef
45
46 define Package/fstools/install
47 $(INSTALL_DIR) $(1)/sbin $(1)/lib
48
49 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,jffs2reset,snapshot_tool} $(1)/sbin/
50 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libfstools.so $(1)/lib/
51 $(INSTALL_BIN) ./files/snapshot $(1)/sbin/
52 ln -s /sbin/jffs2reset $(1)/sbin/jffs2mark
53 endef
54
55 define Package/block-mount/install
56 $(INSTALL_DIR) $(1)/sbin $(1)/lib $(1)/usr/sbin $(1)/etc/hotplug.d/block $(1)/etc/init.d/ $(1)/etc/uci-defaults/
57
58 $(INSTALL_BIN) ./files/fstab.init $(1)/etc/init.d/fstab
59 $(INSTALL_DATA) ./files/fstab.default $(1)/etc/uci-defaults/10-fstab
60 $(INSTALL_DATA) ./files/mount.hotplug $(1)/etc/hotplug.d/block/10-mount
61
62 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/block $(1)/sbin/
63 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblkid-tiny.so $(1)/lib/
64 ln -s /sbin/block $(1)/usr/sbin/swapon
65 ln -s /sbin/block $(1)/usr/sbin/swapoff
66
67 endef
68
69 define Build/InstallDev
70 $(INSTALL_DIR) $(1)/usr/include
71 $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
72 $(INSTALL_DIR) $(1)/usr/lib/
73 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libubi-utils.a $(1)/usr/lib/
74 endef
75
76 $(eval $(call BuildPackage,fstools))
77 $(eval $(call BuildPackage,block-mount))