vp-build/srcpkgs/readline/template

56 lines
1.6 KiB
Bash

# Template build file for 'readline'.
pkgname=readline
_dist_ver=7.0
_patch_ver=003
version=${_dist_ver}.${_patch_ver}
revision=1
wrksrc=${pkgname}-${_dist_ver}
build_style=gnu-configure
configure_args="--with-curses --enable-multibyte"
makedepends="ncurses-devel"
short_desc="The GNU Readline Library"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://tiswww.cwru.edu/php/chet/readline/rltop.html"
license="GPL-3.0-or-later"
distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${_dist_ver}.tar.gz"
checksum=750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334
pre_configure() {
local url="${GNU_SITE}/$pkgname/$pkgname-${_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
sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
}
do_build() {
make ${makejobs} LDFLAGS="-lncurses" SHLIB_LIBS="-lncurses"
}
do_install() {
make DESTDIR=${DESTDIR} LDFLAGS="-lncurses" SHLIB_LIBS="-lncurses" install
}
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"
}
}