summaryrefslogtreecommitdiff
path: root/package/supl/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:11:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:39 +0100
commit3b7e950a2a226d1344e78da8fb10e3cdb92f37a0 (patch)
tree2bda2f5203b3833e77529fe96884d56e69c8fca3 /package/supl/Makefile
parent23cfddf360edbac12473a5c6f9e2d85b12992bb3 (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/supl/Makefile')
-rw-r--r--package/supl/Makefile21
1 files changed, 11 insertions, 10 deletions
diff --git a/package/supl/Makefile b/package/supl/Makefile
index 948ebb339..13e58560f 100644
--- a/package/supl/Makefile
+++ b/package/supl/Makefile
@@ -7,27 +7,28 @@ PKG_NAME:= supl
PKG_VERSION:= 1.0.6
PKG_RELEASE:= 1
PKG_HASH:= 068dc47ce818ce5634f09a88159df85a6ce3456e2467b11b8c5f8543a99bb347
-PKG_DESCR:= tools for accessing SUP/RRLP server
+PKG_DESCR:= tools for accessing sup/rrlp server
PKG_SECTION:= net/misc
PKG_BUILDDEP:= openssl
PKG_DEPENDS:= libopenssl
PKG_URL:= http://www.tajuma.com/supl/
-PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=supl/}
-DISTFILES:= ${PKG_NAME}_${PKG_VERSION}.tar.gz
-WRKDIST= ${WRKDIR}/trunk
+PKG_SITES:= $(MASTER_SITE_SOURCEFORGE:=supl/)
+
+DISTFILES:= $(PKG_NAME)_$(PKG_VERSION).tar.gz
+WRKDIST= $(WRKDIR)/trunk
include $(ADK_TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,SUPL,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,SUPL,supl,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
CONFIG_STYLE:= minimal
-CONFIGURE_ARGS+= --precompiled-asn1=yes --prefix="${WRKINST}/usr"
+CONFIGURE_ARGS+= --precompiled-asn1=yes --prefix="$(WRKINST)/usr"
-post-install:
+supl-install:
$(INSTALL_DIR) $(IDIR_SUPL)/usr/{bin,lib}
$(INSTALL_BIN) $(WRKINST)/usr/bin/supl-{cert,client,proxy} \
$(IDIR_SUPL)/usr/bin
- ${CP} ${WRKINST}/usr/lib/lib{asnrrlp,asnsupl,supl}.so* \
- ${IDIR_SUPL}/usr/lib
+ $(CP) $(WRKINST)/usr/lib/lib{asnrrlp,asnsupl,supl}.so* \
+ $(IDIR_SUPL)/usr/lib
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk