77 lines
2.1 KiB
Bash
77 lines
2.1 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=libtool
|
|
pkgver=2.4.7
|
|
pkgrel=05
|
|
_gccver=12.2.0
|
|
pkgdesc='A generic library support script'
|
|
arch=(x86_64)
|
|
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
|
|
_commit=6d7ce133ce54898cf28abd89d167cccfbc3c9b2b
|
|
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
|
|
no_hostname.patch
|
|
disable-lto-link-order2.patch)
|
|
|
|
pkgver() {
|
|
cd libtool
|
|
git describe --tags | sed 's/-/+/g;s/^v//'
|
|
}
|
|
|
|
prepare() {
|
|
cd libtool
|
|
|
|
patch -Np1 -i ${srcdir}/no_hostname.patch
|
|
|
|
# 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 submodule update
|
|
|
|
./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
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=(GPL)
|
|
|
|
sha256sums=(SKIP
|
|
SKIP
|
|
SKIP
|
|
693aabb24a6e7ce21fe0b5d14394e19edcb8476663b5afa4463f9fa0df24d946 # no_hostname.patch
|
|
b6dce6681f223b18a90614edbcdeb00f228abd1216e22c4bd07285321cd2ceb7) # disable-lto-link-order2.patch
|