Date: Friday, March 17, 2023 @ 22:02:07
Author: dvzrv
Revision: 471288
archrelease: copy trunk to testing-any
Added:
automake/repos/testing-any/
automake/repos/testing-any/PKGBUILD
(from rev 471286, automake/trunk/PKGBUILD)
automake/repos/testing-any/keys/
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: automake/repos/testing-any/PKGBUILD (from rev 471286,
automake/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2023-03-17 22:02:07 UTC (rev 471288)
@@ -0,0 +1,41 @@
+# Maintainer: Lukas Fleischer <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: judd <[email protected]>
+
+pkgname=automake
+pkgver=1.16.5
+pkgrel=2
+pkgdesc="A GNU tool for automatically creating Makefiles"
+arch=('any')
+license=('GPL')
+url="https://www.gnu.org/software/automake"
+depends=('perl' 'bash')
+makedepends=('autoconf')
+checkdepends=('dejagnu' 'gcc-fortran' 'java-environment' 'vala' 'emacs'
'cscope'
+ 'expect' 'ncompress' 'gettext' 'lzip' 'zip' 'sharutils'
'help2man'
+ # disable TeX tests for now, lots of them fail and need upstream
+ # fixes for current texlive release
+ #'texlive-bin' 'texinfo'
+ 'python' 'python-virtualenv')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha512sums=('3084ae543aa3fb5a05104ffb2e66cfa9a53080f2343c44809707fd648516869511500dba50dae67ff10f92a1bf3b5a92b2a0fa01cda30adb69b9da03994d9d88'
+ 'SKIP')
+validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573' # Stefano Lattarini
+ 'F2A38D7EEB2B66405761070D0ADEE10094604D37' # Mathieu Lirzin
+ '155D3FC500C834486D1EEA677FD9FCCB000BEEEE') # Jim Meyering
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure --build=$CHOST --prefix=/usr
+ make
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ make check
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}