summaryrefslogtreecommitdiff
path: root/package/readline/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:20:24 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:20:24 +0200
commit90d5c8b73e8d538e121275b12e714332ca785cff (patch)
treeb70121e4732d658097d1db00c8af381629ec82eb /package/readline/Makefile
parent33dd541790614765228a71477e1f8b2b6aa21ce1 (diff)
automatically create development subpackages, without user interaction, depend on gcc for the target, simplifies a lot of library packages
Diffstat (limited to 'package/readline/Makefile')
-rw-r--r--package/readline/Makefile16
1 files changed, 4 insertions, 12 deletions
diff --git a/package/readline/Makefile b/package/readline/Makefile
index bbd9f6c2b..4b18efc16 100644
--- a/package/readline/Makefile
+++ b/package/readline/Makefile
@@ -5,22 +5,19 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= readline
PKG_VERSION:= 6.1
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= fc2f7e714fe792db1ce6ddc4c9fb4ef3
PKG_DESCR:= Command line editing library
PKG_SECTION:= libs
PKG_DEPENDS:= libncurses
PKG_BUILDDEP:= ncurses
PKG_SITES:= ${MASTER_SITE_GNU:=readline/}
-
-PKG_SUBPKGS:= LIBREADLINE LIBREADLINE_DEV
-PKGSD_LIBREADLINE_DEV:= readline headers
-PKGSC_LIBREADLINE_DEV:= devel
+PKG_LIBNAME:= libreadline
+PKG_OPTS:= dev
include ${TOPDIR}/mk/package.mk
-$(eval $(call PKG_template,LIBREADLINE,libreadline,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-$(eval $(call PKG_template,LIBREADLINE_DEV,libreadline-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBREADLINE_DEV},${PKGSC_LIBREADLINE_DEV}))
+$(eval $(call PKG_template,LIBREADLINE,libreadline,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
CONFIGURE_ARGS+= --with-curses
@@ -29,9 +26,4 @@ libreadline-install:
${CP} ${WRKINST}/usr/lib/libhistory.so* ${IDIR_LIBREADLINE}/usr/lib
${CP} ${WRKINST}/usr/lib/libreadline.so* ${IDIR_LIBREADLINE}/usr/lib
-libreadline-dev-install:
- ${INSTALL_DIR} ${IDIR_LIBREADLINE_DEV}/usr/include/readline
- ${CP} ${WRKINST}/usr/include/readline/*.h \
- ${IDIR_LIBREADLINE_DEV}/usr/include/readline
-
include ${TOPDIR}/mk/pkg-bottom.mk