97 lines
2.9 KiB
Bash
97 lines
2.9 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://git.disroot.org/joborun-pkg/jobcore/src/branch/main/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->libtool->glibc->binutils->gcc
|
|
# NOTE: libtool requires rebuilt with each new gcc version
|
|
|
|
pkgname=libtool
|
|
pkgver=2.5.2+r1+g2fe3a3e2
|
|
_commit=2fe3a3e2a954adcbfb1139d780bec47b85ef6077
|
|
pkgrel=01
|
|
_gccver=14.2.1
|
|
pkgdesc='A generic library support script'
|
|
url='https://www.gnu.org/software/libtool'
|
|
groups=(jobbot)
|
|
depends=(sh tar glibc)
|
|
makedepends=("gcc>=$_gccver" git help2man automake autoconf)
|
|
checkdepends=(gcc-fortran)
|
|
provides=("libltdl=$pkgver" "libtool-multilib=$pkgver")
|
|
conflicts=(libltdl libtool-multilib)
|
|
replaces=(libltdl libtool-multilib)
|
|
# options=(debug) # uncomment to have the libtool-debug pkg built
|
|
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)
|
|
|
|
pkgver() {
|
|
cd libtool
|
|
git describe --tags | sed 's/^v//;s/[^-]*-g/r&/;s/-/+/g'
|
|
}
|
|
|
|
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
|
|
|
|
./bootstrap
|
|
}
|
|
|
|
build() {
|
|
cd libtool
|
|
./configure --prefix=/usr lt_cv_sys_lib_dlsearch_path_spec="/usr/lib /usr/lib32"
|
|
make
|
|
}
|
|
|
|
# # 2.5.0+14+g9a4a0261
|
|
#170: Use -no-canonical-prefixes flag ok
|
|
#
|
|
## ------------- ##
|
|
## Test results. ##
|
|
## ------------- ##
|
|
#
|
|
#ERROR: 150 tests were run,
|
|
#7 failed (5 expected failures).
|
|
#20 tests were skipped.
|
|
|
|
|
|
check() {
|
|
cd libtool
|
|
make check gl_public_submodule_commit=
|
|
}
|
|
|
|
package() {
|
|
cd libtool
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('LGPL-2.0-or-later WITH Libtool-exception')
|
|
|
|
b2sums=('191bd0dde07c5dc39c7e1cc8ea7169f2a37ad89ac83b549c5ef5437395e9121052c0a32ac43b6876bd4c978e742a326d6c33e8d930674ec109caa7fe5335cc1d'
|
|
'SKIP'
|
|
'SKIP'
|
|
'9d1e0460b9ef56ba33ac498814b409d1b1d7c3e8ed41a3aed2a86d86341ed7051ca88a5adfa92bd87da968460514230058c3d490b58537d95722e68d7d1687ff')
|
|
|
|
sha256sums=(595f5939f3bc8318e2d825b56bd20797ed2658a612dfa430e2541f1faf230ef6 # libtool
|
|
SKIP
|
|
SKIP
|
|
b6dce6681f223b18a90614edbcdeb00f228abd1216e22c4bd07285321cd2ceb7) # disable-lto-link-order2.patch
|
|
|
|
## 26cd780173cc6d522d69fb85b849acf61ce8b5562736d90cd290854a6d38269c libtool-2.5.2+r1+g2fe3a3e2-01-x86_64.pkg.tar.lz
|
|
|