PKGBUILDs/core/libtool/PKGBUILD

76 lines
1.9 KiB
Bash
Raw Normal View History

2017-09-09 16:46:46 +00:00
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
2012-05-13 23:41:15 +00:00
# Contributor: judd <jvinet@zeroflux.org>
# NOTE: requires rebuilt with each new gcc version
2014-12-14 17:33:10 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - noautobuild, !distcc
# - removed multilib stuff
2014-12-14 17:36:44 +00:00
# - patch for armv7h tests
2014-12-14 17:33:10 +00:00
2015-05-22 00:55:54 +00:00
noautobuild=1
2014-12-14 17:33:10 +00:00
2014-12-14 15:46:10 +00:00
pkgname=libtool
2019-12-20 21:49:18 +00:00
pkgver=2.4.6+44+gb9b44533
2019-11-21 18:48:17 +00:00
pkgrel=8
2019-10-06 15:21:06 +00:00
_gccver=9.2.0
2017-09-09 16:46:46 +00:00
pkgdesc='A generic library support script'
2017-12-07 13:49:07 +00:00
arch=(x86_64)
2019-11-21 18:48:17 +00:00
url='https://www.gnu.org/software/libtool'
2017-09-09 16:46:46 +00:00
license=(GPL)
groups=(base-devel)
depends=(sh tar glibc)
2018-03-20 11:19:51 +00:00
makedepends=("gcc>=$_gccver" git help2man)
2018-05-07 12:34:20 +00:00
checkdepends=(gcc-fortran)
2014-12-14 17:36:44 +00:00
provides=("libltdl=$pkgver")
2018-03-20 11:19:51 +00:00
conflicts=(libltdl)
replaces=(libltdl)
2014-12-14 17:33:10 +00:00
options=('!distcc')
2019-12-20 21:49:18 +00:00
_commit=b9b44533fbf7c7752ffd255c3d09cc360e24183b
2017-09-09 16:46:46 +00:00
source=(git+https://git.savannah.gnu.org/git/libtool.git#commit=$_commit
2019-11-21 18:48:17 +00:00
git+https://git.savannah.gnu.org/git/gnulib.git
gnulib-bootstrap::git+https://github.com/gnulib-modules/bootstrap.git
https://sources.debian.org/data/main/libt/libtool/2.4.6-11/debian/patches/no_hostname.patch
2014-12-14 17:22:09 +00:00
armv7h-nopic.patch)
2019-11-21 18:48:17 +00:00
sha256sums=('SKIP'
'SKIP'
'SKIP'
'693aabb24a6e7ce21fe0b5d14394e19edcb8476663b5afa4463f9fa0df24d946'
'0e19dec2dabc958ef5d1bcfd0879174766c5783032319fc17d5d6692b2b397c8')
2017-09-09 16:46:46 +00:00
pkgver() {
2017-12-07 13:49:07 +00:00
cd libtool
2017-09-09 16:46:46 +00:00
git describe --tags | sed 's/-/+/g;s/^v//'
}
2012-05-13 23:41:15 +00:00
2014-12-14 17:22:09 +00:00
prepare() {
2017-12-07 13:49:07 +00:00
cd libtool
2019-11-21 18:48:17 +00:00
git submodule init
git config --local submodule.gnulib.url "$srcdir/gnulib"
git config --local submodule.gl-mod/bootstrap.url "$srcdir/gnulib-bootstrap"
git submodule update
2014-12-14 17:22:09 +00:00
patch -p1 -i ../armv7h-nopic.patch
2017-09-09 16:46:46 +00:00
./bootstrap
2019-11-21 18:48:17 +00:00
patch -Np1 -i ${srcdir}/no_hostname.patch
2014-12-14 17:22:09 +00:00
}
2012-05-13 23:41:15 +00:00
build() {
2017-12-07 13:49:07 +00:00
cd libtool
2017-09-09 16:46:46 +00:00
./configure --prefix=/usr lt_cv_sys_lib_dlsearch_path_spec="/usr/lib /usr/lib32"
2012-05-13 23:41:15 +00:00
make
}
check() {
2017-12-07 13:49:07 +00:00
cd libtool
2018-05-07 12:34:20 +00:00
make check gl_public_submodule_commit=
2012-05-13 23:41:15 +00:00
}
2014-12-14 15:46:10 +00:00
package() {
2017-12-07 13:49:07 +00:00
cd libtool
2017-09-09 16:46:46 +00:00
make DESTDIR="$pkgdir" install
2012-05-13 23:41:15 +00:00
}