PKGBUILDs/core/readline/PKGBUILD

71 lines
2.1 KiB
Bash
Raw Normal View History

2014-03-02 04:05:32 +00:00
# $Id$
2014-03-16 13:33:53 +00:00
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# 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
2016-11-14 13:27:54 +00:00
_basever=7.0
2017-02-14 13:20:36 +00:00
_patchlevel=003
2016-12-10 20:08:17 +00:00
pkgver=${_basever}.${_patchlevel}
2016-11-14 13:27:54 +00:00
pkgrel=1
2014-03-16 13:33:53 +00:00
pkgdesc='GNU readline library'
2014-03-02 04:05:32 +00:00
arch=('i686' 'x86_64')
2014-03-16 13:33:53 +00:00
url='http://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')
2014-03-02 04:05:32 +00:00
options=('!emptydirs')
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
2016-11-14 13:27:54 +00:00
md5sums=('205b03a87fc83dab653b628c59b9fc91'
2015-04-30 16:37:57 +00:00
'SKIP'
2016-12-10 20:08:17 +00:00
'58d54966c1191db45973cb3191ac621a'
'e299384458a4cbefaaac3f30e9cc2bba'
2017-02-14 13:20:36 +00:00
'SKIP'
'f9071a353e2fd52a91d32667b23715d6'
'SKIP'
'03595464cf0283286a6e07f4f01c4a70'
2016-12-10 20:08:17 +00:00
'SKIP')