PKGBUILDs/core/readline/PKGBUILD

65 lines
2 KiB
Bash
Raw Normal View History

2020-12-09 18:57:55 +00:00
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2014-03-16 13:33:53 +00:00
# Contributor: Allan McRae <allan@archlinux.org>
2014-03-02 04:05:32 +00:00
# Contributor: judd <jvinet@zeroflux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - for some reason, SHLIB_LIBS isn't populating through for our builds.
# - fixed with a sed.
pkgname=readline
2022-10-29 21:09:31 +00:00
_basever=8.2
_patchlevel=0
2016-12-10 20:08:17 +00:00
pkgver=${_basever}.${_patchlevel}
2021-05-10 23:10:19 +00:00
pkgrel=1
2014-03-16 13:33:53 +00:00
pkgdesc='GNU readline library'
2018-06-06 12:49:04 +00:00
arch=('x86_64')
2019-10-16 12:30:55 +00:00
url='https://tiswww.case.edu/php/chet/readline/rltop.html'
2014-03-02 04:05:32 +00:00
license=('GPL')
backup=('etc/inputrc')
2016-11-14 13:27:54 +00:00
depends=('glibc' 'ncurses' 'libncursesw.so')
provides=('libhistory.so' 'libreadline.so')
2022-02-02 13:51:34 +00:00
options=('!emptydirs' 'debug')
2016-11-14 13:27:54 +00:00
source=(https://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
2014-04-08 17:00:35 +00:00
inputrc)
2015-04-30 16:37:57 +00:00
validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
2014-03-16 13:33:53 +00:00
2015-04-30 16:37:57 +00:00
if [ $_patchlevel -gt 0 ]; then
2014-04-08 17:00:35 +00:00
for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
2016-11-14 13:27:54 +00:00
source=(${source[@]} https://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf "%03d" $_p){,.sig})
2014-03-02 04:05:32 +00:00
done
fi
2014-03-16 13:33:53 +00:00
prepare() {
2014-04-08 17:00:35 +00:00
cd $pkgname-$_basever
for (( _p=1; _p <= $((10#${_patchlevel})); _p++ )); do
msg "applying patch readline${_basever//.}-$(printf "%03d" $_p)"
patch -p0 -i ../readline${_basever//.}-$(printf "%03d" $_p)
2014-03-02 04:05:32 +00:00
done
2014-03-16 13:33:53 +00:00
# remove RPATH from shared objects (FS#14366)
2014-03-02 04:05:32 +00:00
sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
# fix getting -lncurses through to SHLIB_LIBS
sed -i 's/SHLIB_LIBS = @SHLIB_LIBS@/SHLIB_LIBS = @SHLIB_LIBS@ -lncurses/' shlib/Makefile.in
2014-03-16 13:33:53 +00:00
}
build() {
2014-04-08 17:00:35 +00:00
cd $pkgname-$_basever
2014-03-02 04:05:32 +00:00
# build with -fPIC for x86_64 (FS#15634)
[[ $CARCH == "x86_64" ]] && CFLAGS="$CFLAGS -fPIC"
./configure --prefix=/usr
make SHLIB_LIBS=-lncurses
}
package() {
2014-04-08 17:00:35 +00:00
make -C $pkgname-$_basever DESTDIR="$pkgdir" install
2014-03-16 13:33:53 +00:00
install -Dm644 inputrc "$pkgdir"/etc/inputrc
2014-03-02 04:05:32 +00:00
}
2014-04-08 17:00:35 +00:00
2022-10-29 21:09:31 +00:00
md5sums=('4aa1b31be779e6b84f9a96cb66bc50f6'
2015-04-30 16:37:57 +00:00
'SKIP'
2022-10-29 21:09:31 +00:00
'58d54966c1191db45973cb3191ac621a')