mtrnord-gluon-packages

My own Package Repo for gluon
git clone git://archive.git.mtrnord.blog/MTRNord/mtrnord-gluon-packages.git
Log | Files | Refs | README

Makefile (629B)


      1 include $(TOPDIR)/rules.mk
      2 
      3 PKG_NAME:=physical_web
      4 PKG_VERSION:=1
      5 PKG_RELEASE:=1
      6 
      7 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
      8 
      9 define Package/physical_web
     10   SECTION:=network
     11   CATEGORY:=Network
     12   TITLE:=Implementation of mDNS from Physical Web
     13   DEPENDS:=+avahi +physical_web_admin
     14 endef
     15 
     16 define Package/physical_web/description
     17 	Implementation of mDNS from Physical Web
     18 endef
     19 
     20 define Build/Prepare
     21 	mkdir -p $(PKG_BUILD_DIR)
     22 endef
     23 
     24 define Build/Configure
     25 endef
     26 
     27 define Build/Compile
     28 	echo "Nothing to really compile"
     29 endef
     30 
     31 define Package/physical_web/install
     32 	$(CP) ./files/* $(1)/
     33 endef
     34 
     35 $(eval $(call BuildPackage,gluon-core))