summaryrefslogtreecommitdiff
path: root/package/readline/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-02-26 14:21:25 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-02-26 14:21:25 +0100
commit27537f0ac386cd2d869a73d2c4d432be2dffb9eb (patch)
tree8d0d6a6026aa6c0a7b5bbd777ef9ed65f916fa78 /package/readline/Makefile
parent1dbfbd6e0c5c2738f2f8d3b9b8ff0a3a9dc4e529 (diff)
parent67cb0759e674470fa53fd3711d8460fd4a12c1a3 (diff)
resolve xterm Makefile conflict
Diffstat (limited to 'package/readline/Makefile')
-rw-r--r--package/readline/Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/package/readline/Makefile b/package/readline/Makefile
index 3126e9a33..bbd9f6c2b 100644
--- a/package/readline/Makefile
+++ b/package/readline/Makefile
@@ -13,17 +13,25 @@ PKG_DEPENDS:= libncurses
PKG_BUILDDEP:= ncurses
PKG_SITES:= ${MASTER_SITE_GNU:=readline/}
-PKG_SUBPKGS:= LIBREADLINE
+PKG_SUBPKGS:= LIBREADLINE LIBREADLINE_DEV
+PKGSD_LIBREADLINE_DEV:= readline headers
+PKGSC_LIBREADLINE_DEV:= devel
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}))
CONFIGURE_ARGS+= --with-curses
-post-install:
+libreadline-install:
${INSTALL_DIR} ${IDIR_LIBREADLINE}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libhistory.so* ${IDIR_LIBREADLINE}/usr/lib/
- ${CP} ${WRKINST}/usr/lib/libreadline.so* ${IDIR_LIBREADLINE}/usr/lib/
+ ${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