void-packages/srcpkgs/libreadline8/template
2019-01-25 06:04:13 -02:00

72 lines
1.9 KiB
Bash

# Template file for 'libreadline8'
pkgname=libreadline8
_dist_ver=8.0
_patch_ver=000
version="${_dist_ver}.${_patch_ver}"
revision=1
bootstrap=yes
wrksrc="readline-${_dist_ver}"
build_style=gnu-configure
configure_args="--with-curses --enable-multibyte"
makedepends="ncurses-devel"
short_desc="GNU Readline Library"
maintainer="Juan RP <xtraeme@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="https://tiswww.cwru.edu/php/chet/readline/rltop.html"
distfiles="${GNU_SITE}/readline/readline-${_dist_ver}.tar.gz"
checksum=e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461
pre_configure() {
local url="${GNU_SITE}/readline/readline-${_dist_ver}-patches"
cd ${XBPS_SRCDISTDIR}/${pkgname}-${version}
if [ "${_patch_ver}" -gt 000 ]; then
for p in $(seq -w 001 ${_patch_ver}); do
if [ -f readline${version/./}-${p} ]; then
continue
fi
local patch_url="${url}/readline${_dist_ver/./}-${p}"
msg_normal " Fetching ${patch_url} ...\n"
$XBPS_FETCH_CMD "${patch_url}"
done
fi
cd ${wrksrc}
for p in $(seq -w 001 ${_patch_ver}); do
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/${pkgname}-${version}/readline${_dist_ver/./}-${p}
msg_normal " Applying patch readline${_dist_ver/./}-$p.\n"
done
vsed -e 's|-Wl,-rpath,$(libdir) ||g' -i support/shobj-conf
}
do_build() {
make ${makejobs} LDFLAGS="-lncurses" SHLIB_LIBS="-lncurses"
}
do_install() {
make DESTDIR=${DESTDIR} LDFLAGS="-lncurses" SHLIB_LIBS="-lncurses" install
# Examples and README, COPYING, INSTALL
rm -rf ${DESTDIR}/usr/share/{readline,doc}
}
libhistory8_package() {
short_desc+=" - history library"
pkg_install() {
vmove "usr/lib/libhistory.so.*"
}
}
readline-devel_package() {
depends="ncurses-devel ${sourcepkg}-${version}_${revision}
libhistory8-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/lib/pkgconfig
vmove usr/include
vmove usr/share/man/man3
vmove usr/share/info
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}