void-packages/srcpkgs/readline/template

52 lines
1.4 KiB
Plaintext

# Template build file for 'readline'.
pkgname=readline
_dist_ver=6.3
_patch_ver=000
version=${_dist_ver}.${_patch_ver}
revision=2
wrksrc=${pkgname}-${_dist_ver}
build_style=gnu-configure
configure_args="--with-curses --enable-multibyte"
make_build_args="SHLIB_LIBS=-lncurses"
makedepends="ncurses-devel"
short_desc="The GNU Readline Library"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
license="GPL-3"
distfiles="http://ftp.gnu.org/gnu/readline/${pkgname}-${_dist_ver}.tar.gz"
checksum=56ba6071b9462f980c5a72ab0023893b65ba6debb4eeb475d7a563dc65cafd43
LDFLAGS="-lncurses"
pre_configure() {
local url="http://ftp.gnu.org/gnu/$pkgname/$pkgname-${_dist_ver}-patches"
if [ "${_patch_ver}" -gt 000 ]; then
for p in $(seq -w 001 ${_patch_ver}); do
cd ${XBPS_SRCDISTDIR}
if [ -f ${XBPS_SRCDISTDIR}/readline62-${p} ]; then
continue
fi
msg_normal " Fetching $url/readline62-$p ...\n"
$XBPS_FETCH_CMD ${url}/readline62-$p
done
fi
cd ${wrksrc}
for p in $(seq -w 001 ${_patch_ver}); do
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/readline62-${p}
msg_normal " Applying patch readline62-$p.\n"
done
sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
}
readline-devel_package() {
depends="ncurses-devel ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/share
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}