ipq40xx: Enable the Engenius EAP1300
[openwrt/openwrt.git] / package / utils / yafut / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=yafut
4 PKG_RELEASE:=1
5
6 PKG_SOURCE_PROTO:=git
7 PKG_SOURCE_URL=https://github.com/kempniu/yafut.git
8 PKG_MIRROR_HASH:=6eece622d1df99ffee1a18d162d36292f32bf2d5e514663a6b61fd82c2ecbcba
9 PKG_SOURCE_DATE:=2023-03-31
10 PKG_SOURCE_VERSION:=16435e89d449f953712983315e1a89cdb678620d
11
12 PKG_LICENSE:=GPL-2.0
13 PKG_LICENSE_FILES:=LICENSE
14
15 include $(INCLUDE_DIR)/package.mk
16 include $(INCLUDE_DIR)/cmake.mk
17
18 CMAKE_INSTALL:=1
19
20 define Package/yafut
21 SECTION:=utils
22 CATEGORY:=Utilities
23 TITLE:=Yet Another File UTility
24 DEPENDS:=@NAND_SUPPORT
25 endef
26
27 define Package/yafut/description
28 A program for copying files from/to Yaffs file systems from userspace.
29 endef
30
31 define Package/yafut/install
32 $(INSTALL_DIR) $(1)/usr/bin
33 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yafut $(1)/usr/bin
34 endef
35
36 $(eval $(call BuildPackage,yafut))