35 lines
725 B
Makefile
35 lines
725 B
Makefile
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=pv1res
|
||
|
PKG_RELEASE:=1
|
||
|
PKG_VERSION:=0.0.1
|
||
|
|
||
|
PKG_BUILD_DIR := $(COMPILE_DIR)/$(PKG_NAME)
|
||
|
|
||
|
include $(BUILD_DIR)/package.mk
|
||
|
|
||
|
define Package/$(PKG_NAME)
|
||
|
SECTION:=utils
|
||
|
CATEGORY:=Netease
|
||
|
TITLE:=System Resource Files
|
||
|
endef
|
||
|
|
||
|
define Package/$(PKG_NAME)/description
|
||
|
$(PKG_NAME) System used sound, picture resources.
|
||
|
endef
|
||
|
|
||
|
define Build/Configure
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
endef
|
||
|
|
||
|
define Package/$(PKG_NAME)/install
|
||
|
$(INSTALL_DIR) $(1)/usr/share/resource/voice
|
||
|
$(INSTALL_DIR) $(1)/usr/share/resource/image
|
||
|
$(INSTALL_BIN) resource/voice/* $(1)/usr/share/resource/voice/
|
||
|
$(INSTALL_BIN) resource/image/* $(1)/usr/share/resource/image/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|