mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
81 lines
2.4 KiB
Bash
81 lines
2.4 KiB
Bash
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
|
|
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
# NOTE: requires rebuilt with each new gcc version
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - noautobuild, !distcc
|
|
# - removed multilib stuff
|
|
# - patch for armv7h tests
|
|
|
|
noautobuild=1
|
|
|
|
pkgname=libtool
|
|
pkgver=2.5.1
|
|
_commit=1354176bbbc939a7d07a0dcf9b2d92e2ac6bcfef
|
|
pkgrel=2
|
|
_gccver=14.2.1
|
|
pkgdesc='A generic library support script'
|
|
arch=(x86_64)
|
|
url='https://www.gnu.org/software/libtool'
|
|
license=('LGPL-2.0-or-later WITH Libtool-exception')
|
|
depends=(sh tar glibc)
|
|
makedepends=("gcc>=$_gccver" git help2man)
|
|
checkdepends=(gcc-fortran)
|
|
provides=("libltdl=$pkgver")
|
|
conflicts=(libltdl)
|
|
replaces=(libltdl)
|
|
options=(!distcc)
|
|
source=(
|
|
git+https://git.savannah.gnu.org/git/libtool.git#commit=$_commit
|
|
git+https://git.savannah.gnu.org/git/gnulib.git
|
|
gnulib-bootstrap::git+https://github.com/gnulib-modules/bootstrap.git
|
|
disable-lto-link-order2.patch
|
|
armv7h-nopic.patch
|
|
)
|
|
b2sums=('3c5daaa5e6f685284330a9fe91bb518dbe367edca66e7702a0b6791418f9d73c0d3f4c56529079d3fe8d52125dcf98c71ada43c1799ba84df35989b56d8a20d8'
|
|
'SKIP'
|
|
'SKIP'
|
|
'9d1e0460b9ef56ba33ac498814b409d1b1d7c3e8ed41a3aed2a86d86341ed7051ca88a5adfa92bd87da968460514230058c3d490b58537d95722e68d7d1687ff'
|
|
'4a65a2525c8709faf7fe39dfada893e3a21d021f83c25b0798fe0584386c25755877e8b7c220fee6f252e4f2a42b47e4ba3bec36297d01e654b040232b0a711b')
|
|
|
|
pkgver() {
|
|
cd libtool
|
|
git describe --tags | sed 's/-/+/g;s/^v//'
|
|
}
|
|
|
|
prepare() {
|
|
cd libtool
|
|
|
|
# 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
|
|
patch -Np1 -i "${srcdir}"/disable-lto-link-order2.patch
|
|
|
|
git submodule init
|
|
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
|
|
|
|
patch -p1 -i ../armv7h-nopic.patch
|
|
./bootstrap
|
|
}
|
|
|
|
build() {
|
|
cd libtool
|
|
./configure --prefix=/usr lt_cv_sys_lib_dlsearch_path_spec="/usr/lib /usr/lib32"
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd libtool
|
|
make check gl_public_submodule_commit=
|
|
}
|
|
|
|
package() {
|
|
cd libtool
|
|
make DESTDIR="$pkgdir" install
|
|
}
|