mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
core/libtool to 2.4.6+42+gb88cebd5-8
This commit is contained in:
parent
129268d35b
commit
5cb1561f43
1 changed files with 19 additions and 5 deletions
|
@ -13,11 +13,11 @@ noautobuild=1
|
||||||
|
|
||||||
pkgname=libtool
|
pkgname=libtool
|
||||||
pkgver=2.4.6+42+gb88cebd5
|
pkgver=2.4.6+42+gb88cebd5
|
||||||
pkgrel=7
|
pkgrel=8
|
||||||
_gccver=9.2.0
|
_gccver=9.2.0
|
||||||
pkgdesc='A generic library support script'
|
pkgdesc='A generic library support script'
|
||||||
arch=(x86_64)
|
arch=(x86_64)
|
||||||
url='http://www.gnu.org/software/libtool'
|
url='https://www.gnu.org/software/libtool'
|
||||||
license=(GPL)
|
license=(GPL)
|
||||||
groups=(base-devel)
|
groups=(base-devel)
|
||||||
depends=(sh tar glibc)
|
depends=(sh tar glibc)
|
||||||
|
@ -27,11 +27,17 @@ provides=("libltdl=$pkgver")
|
||||||
conflicts=(libltdl)
|
conflicts=(libltdl)
|
||||||
replaces=(libltdl)
|
replaces=(libltdl)
|
||||||
options=('!distcc')
|
options=('!distcc')
|
||||||
_commit=b9b44533fbf7c7752ffd255c3d09cc360e24183b
|
_commit=b88cebd510add4420dd8f5367e3cc6e6e1f267cd
|
||||||
source=(git+https://git.savannah.gnu.org/git/libtool.git#commit=$_commit
|
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
|
||||||
|
https://sources.debian.org/data/main/libt/libtool/2.4.6-11/debian/patches/no_hostname.patch
|
||||||
armv7h-nopic.patch)
|
armv7h-nopic.patch)
|
||||||
md5sums=('SKIP'
|
sha256sums=('SKIP'
|
||||||
'8a1fdc77814fa5db3fc4d6a888d0cd89')
|
'SKIP'
|
||||||
|
'SKIP'
|
||||||
|
'693aabb24a6e7ce21fe0b5d14394e19edcb8476663b5afa4463f9fa0df24d946'
|
||||||
|
'0e19dec2dabc958ef5d1bcfd0879174766c5783032319fc17d5d6692b2b397c8')
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
cd libtool
|
cd libtool
|
||||||
|
@ -40,8 +46,16 @@ pkgver() {
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd libtool
|
cd libtool
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
patch -p1 -i ../armv7h-nopic.patch
|
patch -p1 -i ../armv7h-nopic.patch
|
||||||
./bootstrap
|
./bootstrap
|
||||||
|
|
||||||
|
patch -Np1 -i ${srcdir}/no_hostname.patch
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
Loading…
Reference in a new issue