OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | include $(TOPDIR)/rules.mk |
| 2 | |
| 3 | PKG_NAME:=nanonote-example-files |
| 4 | PKG_VERSION:=1.0 |
| 5 | |
| 6 | include $(INCLUDE_DIR)/package.mk |
| 7 | |
| 8 | define Package/nanonote-example-files |
| 9 | TITLE:=nanonote-example-files |
| 10 | SECTION:=utils |
| 11 | CATEGORY:=Utilities |
| 12 | endef |
| 13 | |
| 14 | define Package/nanonote-example-files/description |
| 15 | Example Music files, etc. |
| 16 | endef |
| 17 | |
| 18 | define Build/Compile |
| 19 | endef |
| 20 | |
| 21 | define Package/nanonote-example-files/install |
| 22 | $(INSTALL_DIR) $(1)/root/ |
| 23 | $(CP) ./files/* $(1)/root/ |
| 24 | endef |
| 25 | |
| 26 | $(eval $(call BuildPackage,nanonote-example-files)) |
