lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Makefile (1143B)


      1 #
      2 # This is free software, licensed under the GNU General Public License v2.
      3 #
      4 
      5 include $(TOPDIR)/rules.mk
      6 
      7 PKG_NAME:=sqm-scripts-extra
      8 PKG_VERSION:=2016-06-08
      9 PKG_RELEASE:=1
     10 PKG_LICENSE:=GPLv2
     11 
     12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.xz
     13 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
     14 
     15 include $(INCLUDE_DIR)/package.mk
     16 
     17 define Package/sqm-scripts-extra
     18   SECTION:=net
     19   CATEGORY:=Base system
     20   DEPENDS:=+sqm-scripts
     21   TITLE:=SQM Scripts - additional experimental scripts for testing
     22   PKGARCH:=all
     23   MAINTAINER:=Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>, \
     24 	Sebastian Moeller <moeller0@gmx.de>
     25 endef
     26 
     27 define Package/sqm-scripts-extra/description
     28   A set of experimental scripts for sqm-scripts QoS package. The contents of this package may
     29   change as new qdiscs like 'cake' are developed and tested.
     30 endef
     31 
     32 define Package/sqm-scripts-extra/download
     33 endef
     34 
     35 define Build/Prepare
     36 endef
     37 
     38 define Build/Compile
     39 endef
     40 
     41 define Package/sqm-scripts-extra/install
     42 	$(INSTALL_DIR) $(1)/usr/lib/sqm
     43 	$(INSTALL_DATA) ./src/* $(1)/usr/lib/sqm/
     44 endef
     45 
     46 $(eval $(call BuildPackage,sqm-scripts-extra))
     47