PKGBUILDs/core/readline/PKGBUILD

74 lines
2.2 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
_basever=6.3
_patchlevel=000 #prepare for some patches
pkgver=$_basever #.$_patchlevel
2014-03-16 13:33:53 +00:00
pkgrel=3
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')
depends=('glibc' 'ncurses')
backup=('etc/inputrc')
options=('!emptydirs')
install=readline.install
source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
2014-03-16 13:33:53 +00:00
inputrc
readline-6.3-vi-last.patch
readline-6.3-dispatch-multikey.patch)
if [[ $_patchlevel -gt 0 ]]; then
2014-03-02 04:05:32 +00:00
for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
source=(${source[@]} http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf "%03d" $p){,.sig})
done
fi
2014-03-16 13:33:53 +00:00
2014-03-02 04:05:32 +00:00
md5sums=('33c8fb279e981274f485fd91da77e94a'
'SKIP'
2014-03-16 13:33:53 +00:00
'58d54966c1191db45973cb3191ac621a'
'fcfe0a50c69f56f66ad04127a927862e'
'ee4e0df0dbf7e80783b7aa198c67fb45')
2014-03-02 04:05:32 +00:00
2014-03-16 13:33:53 +00:00
prepare() {
cd $pkgname-$pkgver
2014-03-02 04:05:32 +00:00
for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
2014-03-16 13:33:53 +00:00
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
# patch from upstream mailing list to fix vi mode
patch -p2 -i ../readline-6.3-vi-last.patch
# patch from upstream mailing list to fix the crash after pressing Delete twice
patch -p2 -i ../readline-6.3-dispatch-multikey.patch
# 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() {
cd $pkgname-$pkgver
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-03-16 13:33:53 +00:00
make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
install -Dm644 inputrc "$pkgdir"/etc/inputrc
2014-03-02 04:05:32 +00:00
}