libtool 2.4.7-1

This commit is contained in:
xhaa123 2024-09-07 23:18:11 +08:00
parent 31204bdf56
commit 0a3543362a

32
libtool/PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=libtool
pkgver=2.4.7
pkgrel=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')
groups=('base-devel')
depends=('glibc' 'bash' 'tar')
makedepends=('gcc>=14.2.0')
source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
sha256sums=(4f7f217f057ce655ff22559ad221a0fd8ef84ad1fc5fcb6990cecc333aa1635d)
build() {
cd ${pkgname}-${pkgver}
${CONFIGURE}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}