PKGBUILDs/core/libtool/PKGBUILD

90 lines
2.5 KiB
Bash
Raw Normal View History

2022-02-15 00:46:26 +00:00
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2017-09-09 16:46:46 +00:00
# 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
2023-01-18 00:33:26 +00:00
_commit=1ec8fa28dcb29500d485c136db28315671ec4c3b
pkgver=2.4.7+4+g1ec8fa28
2023-05-03 23:37:38 +00:00
pkgrel=3
_gccver=13.1.1
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)
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)
2022-02-15 00:46:26 +00:00
options=(!distcc)
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
2020-05-03 18:45:10 +00:00
no_hostname.patch
2022-02-15 00:46:26 +00:00
disable-lto-link-order2.patch
2023-01-18 00:33:26 +00:00
grep_3.8_fix.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'
2022-02-15 00:46:26 +00:00
'b6dce6681f223b18a90614edbcdeb00f228abd1216e22c4bd07285321cd2ceb7'
2023-01-18 00:33:26 +00:00
'0a31d3ed91d97a18e17942c85018899c0233493a54c885f4c133454de522ef50'
2019-11-21 18:48:17 +00:00
'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
2023-01-18 00:33:26 +00:00
patch -Np1 -i "${srcdir}"/no_hostname.patch
2020-02-11 13:35:18 +00:00
2022-02-15 00:46:26 +00:00
# test 67 is broken with lto
# this patch removes the -flto flag for this very test
# adapt when -ffat-lto-objects is enabled by Arch
2023-01-18 00:33:26 +00:00
patch -Np1 -i "${srcdir}"/disable-lto-link-order2.patch
# test 66 is broken with grep 3.8
# see https://bugzilla.opensuse.org/show_bug.cgi?id=1203097
patch -Np1 -i "${srcdir}"/grep_3.8_fix.patch
2022-02-15 00:46:26 +00:00
2019-11-21 18:48:17 +00:00
git submodule init
2023-01-18 00:33:26 +00:00
git config --local submodule.gnulib.url "${srcdir}"/gnulib
git config --local submodule.gl-mod/bootstrap.url "${srcdir}"/gnulib-bootstrap
git -c protocol.file.allow=always submodule update
2019-11-21 18:48:17 +00:00
2014-12-14 17:22:09 +00:00
patch -p1 -i ../armv7h-nopic.patch
2017-09-09 16:46:46 +00:00
./bootstrap
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
}