From 059db111e0aa3138697cb2197c012aa97513b305 Mon Sep 17 00:00:00 2001 From: xhaa123 Date: Sat, 7 Sep 2024 23:18:11 +0800 Subject: [PATCH] automake 1.17-1 --- automake/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 automake/PKGBUILD diff --git a/automake/PKGBUILD b/automake/PKGBUILD new file mode 100644 index 0000000..05fc6aa --- /dev/null +++ b/automake/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=automake +pkgver=1.17 +pkgrel=1 +pkgdesc="A GNU tool for automatically creating Makefiles" +arch=('x86_64') +url="https://www.gnu.org/software/automake/" +license=('GPL') +groups=('base-devel') +depends=('perl' 'bash') +makedepends=('autoconf') +source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz) +sha256sums=(8920c1fc411e13b90bf704ef9db6f29d540e76d232cb3b2c9f4dc4cc599bd990) + +build() { + cd ${pkgname}-${pkgver} + + ${CONFIGURE} --docdir=/usr/share/doc/${pkgname}-${pkgver} + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +}