treewide: revise library packaging
[openwrt/staging/chunkeey.git] / package / utils / f2fs-tools / 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:=f2fs-tools
11 PKG_VERSION:=1.12.0
12 PKG_RELEASE:=2
13
14 PKG_LICENSE:=GPLv2
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/
18 PKG_HASH:=e2124e4dffaba865d41495d817bcb924d096adaec67ff777b8c7da99aa13f696
19
20 PKG_FIXUP:=autoreconf
21 PKG_BUILD_PARALLEL:=1
22 PKG_INSTALL:=1
23
24 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/f2fs-tools/Default
29 SECTION:=utils
30 CATEGORY:=Utilities
31 SUBMENU:=Filesystem
32 DEPENDS:=+libf2fs
33 URL:=http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git
34 endef
35
36 define Package/mkf2fs
37 $(Package/f2fs-tools/Default)
38 TITLE:=Utility for creating a Flash-Friendly File System (F2FS)
39 endef
40
41 define Package/f2fsck
42 $(Package/f2fs-tools/Default)
43 TITLE:=Utility for checking/repairing a Flash-Friendly File System (F2FS)
44 endef
45
46 define Package/f2fs-tools
47 $(Package/f2fs-tools/Default)
48 TITLE:=Tools for Flash-Friendly File System (F2FS)
49 DEPENDS += +mkf2fs +f2fsck
50 endef
51
52 define Package/libf2fs
53 SECTION:=libs
54 CATEGORY:=Libraries
55 TITLE:=Library for Flash-Friendly File System (F2FS) tools
56 DEPENDS:=+libuuid
57 ABI_VERSION:=6
58 endef
59
60 CONFIGURE_ARGS += \
61 --without-selinux \
62 --without-blkid
63
64 CONFIGURE_VARS += \
65 ac_cv_file__git=no
66
67 define Package/libf2fs/install
68 $(INSTALL_DIR) $(1)/usr/lib
69 $(CP) \
70 $(PKG_INSTALL_DIR)/usr/lib/libf2fs.so.* $(1)/usr/lib/
71 endef
72
73 define Package/mkf2fs/install
74 $(INSTALL_DIR) $(1)/usr/sbin
75 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkfs.f2fs $(1)/usr/sbin
76 endef
77
78 define Package/f2fsck/install
79 $(INSTALL_DIR) $(1)/usr/sbin
80
81 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fsck.f2fs $(1)/usr/sbin
82 ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/defrag.f2fs
83 ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/dump.f2fs
84 ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/sload.f2fs
85 ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/resize.f2fs
86 endef
87
88 define Package/f2fs-tools/install
89 $(INSTALL_DIR) $(1)/usr/sbin
90 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/f2fstat $(1)/usr/sbin
91 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fibmap.f2fs $(1)/usr/sbin
92 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/parse.f2fs $(1)/usr/sbin
93 endef
94
95 $(eval $(call BuildPackage,libf2fs))
96 $(eval $(call BuildPackage,mkf2fs))
97 $(eval $(call BuildPackage,f2fsck))
98 $(eval $(call BuildPackage,f2fs-tools))