diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-21 17:25:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-21 17:25:35 +0200 |
commit | 98b7adfbd06f0f6bd99ca4805ca34250ee027fa1 (patch) | |
tree | a68345ba8ba7ee532e4b7426cadad31d7add24c0 /package/readline/Makefile | |
parent | 09d28322f4828a387eeee03d303c833eab8828c5 (diff) | |
parent | 32a82e38679501da738199135b35f93ddc8aca0a (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/readline/Makefile')
-rw-r--r-- | package/readline/Makefile | 16 |
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 |