Makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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.8.0
  10. PKG_RELEASE:=3
  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:=d4dbecf55560c548bf0758c9f641d1beec1e960b38cbbc19951195d5144d39ae
  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. CONFIGURE_VARS += \
  49. ac_cv_file__git=no
  50. define Package/libf2fs/install
  51. $(INSTALL_DIR) $(1)/usr/lib
  52. $(CP) \
  53. $(PKG_INSTALL_DIR)/usr/lib/libf2fs.so* $(1)/usr/lib/
  54. endef
  55. define Package/mkf2fs/install
  56. $(INSTALL_DIR) $(1)/usr/sbin
  57. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkfs.f2fs $(1)/usr/sbin
  58. endef
  59. define Package/f2fsck/install
  60. $(INSTALL_DIR) $(1)/usr/sbin
  61. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fsck.f2fs $(1)/usr/sbin
  62. ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/defrag.f2fs
  63. ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/dump.f2fs
  64. ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/sload.f2fs
  65. ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/resize.f2fs
  66. endef
  67. define Package/f2fs-tools/install
  68. $(INSTALL_DIR) $(1)/usr/sbin
  69. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/f2fstat $(1)/usr/sbin
  70. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fibmap.f2fs $(1)/usr/sbin
  71. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/parse.f2fs $(1)/usr/sbin
  72. endef
  73. $(eval $(call BuildPackage,libf2fs))
  74. $(eval $(call BuildPackage,mkf2fs))
  75. $(eval $(call BuildPackage,f2fsck))
  76. $(eval $(call BuildPackage,f2fs-tools))