Makefile 2.5 KB

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