diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:11:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:14:39 +0100 |
commit | 3b7e950a2a226d1344e78da8fb10e3cdb92f37a0 (patch) | |
tree | 2bda2f5203b3833e77529fe96884d56e69c8fca3 /package/i2400m-fw/Makefile | |
parent | 23cfddf360edbac12473a5c6f9e2d85b12992bb3 (diff) |
cleanup phil's submissions
- use () instead of {} in make variables for now
- use PKG_HASH instead of PKG_MD5SUM
- update to latest upstream versions
- use a newline between PKG_* variables and DISTFILES
- use <pkgname>-install instead of post-install
- use lowercase description texts only
- fix some missing PKG_BUILDDEP
- elfutils needs argp, which is not available in uClibc-ng, yet
- PKG_HASH is not required for git sources
Diffstat (limited to 'package/i2400m-fw/Makefile')
-rw-r--r-- | package/i2400m-fw/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/package/i2400m-fw/Makefile b/package/i2400m-fw/Makefile index ff2ab45af..85aef1ecd 100644 --- a/package/i2400m-fw/Makefile +++ b/package/i2400m-fw/Makefile @@ -7,15 +7,16 @@ PKG_NAME:= i2400m-fw PKG_VERSION:= 1.5.0 PKG_RELEASE:= 1 PKG_HASH:= edcb7c5322c0185173a2dc79b3df4bc74964edfa741ebf9a09cd70a32d758c3d -PKG_DESCR:= Intel (R) WiMAX 5150/5350/6250 Firmware -PKG_SECTION:= net/misc +PKG_DESCR:= intel (R) wimax 5150/5350/6250 firmware +PKG_SECTION:= sys/firmware PKG_URL:= http://www.linuxwimax.org PKG_SITES:= "http://www.linuxwimax.org/Download?action=AttachFile&do=get&target=" -DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 include $(ADK_TOPDIR)/mk/package.mk -$(eval $(call PKG_template,I2400M_FW,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,I2400M_FW,i2400m-fw,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) CONFIG_STYLE:= manual BUILD_STYLE:= manual @@ -26,4 +27,4 @@ do-install: $(INSTALL_DATA) $(WRKDIST)/*-fw-usb-*.sbcf \ $(IDIR_I2400M_FW)/lib/firmware/ -include ${ADK_TOPDIR}/mk/pkg-bottom.mk +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |