From 0a3543362a8211ea6eed8624383af30c8923b2de Mon Sep 17 00:00:00 2001 From: xhaa123 Date: Sat, 7 Sep 2024 23:18:11 +0800 Subject: [PATCH] libtool 2.4.7-1 --- libtool/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libtool/PKGBUILD diff --git a/libtool/PKGBUILD b/libtool/PKGBUILD new file mode 100644 index 0000000..5474980 --- /dev/null +++ b/libtool/PKGBUILD @@ -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 +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 +}