37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
_pkgname=automake
|
|
pkgname=automake-1.14
|
|
pkgver=1.14.1
|
|
pkgrel=1
|
|
pkgdesc="A GNU tool for automatically creating Makefiles"
|
|
arch=('any')
|
|
license=('GPL-2')
|
|
url="https://www.gnu.org/software/automake"
|
|
depends=('perl' 'bash')
|
|
makedepends=('autoconf')
|
|
provides=("automake=1.14")
|
|
source=("https://ftp.gnu.org/gnu/${_pkgname}/${_pkgname}-${pkgver}.tar.xz"{,.sig})
|
|
sha512sums=('5de971159dfca2ec74c3c9a2f1368331efc437b146d675740c8735fcb0d32a30d0560fd29df64c3279efdf9278152c82a9ff09040b3e64d84743aaf25b26ce69'
|
|
'SKIP')
|
|
validpgpkeys=('A0460631BECA5C1CCD1C8362FC818E17429F96EA') # Stefano Lattarini
|
|
|
|
build() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
./configure --build=$CHOST --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
|
|
rm -f "${pkgdir}"/usr/bin/{automake,aclocal}
|
|
rm -rf "${pkgdir}"/usr/share/aclocal
|
|
rm -fv "${pkgdir}"/usr/share/man/man1/{automake,aclocal}.1*
|
|
|
|
rm -rf "${pkgdir}"/usr/share/info
|
|
rm -rf "${pkgdir}"/usr/share/doc
|
|
}
|