54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=automake
|
|
pkgver=1.16.5
|
|
pkgrel=02
|
|
pkgdesc="A GNU tool for automatically creating Makefiles"
|
|
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})
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --build=$CHOST --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('GPL')
|
|
|
|
validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573' # Stefano Lattarini
|
|
'F2A38D7EEB2B66405761070D0ADEE10094604D37' # Mathieu Lirzin
|
|
'155D3FC500C834486D1EEA677FD9FCCB000BEEEE') # Jim Meyering
|
|
|
|
sha256sums=(f01d58cd6d9d77fbdca9eb4bbd5ead1988228fdb73d6f7a201f5f8d6b118b469 # automake-1.16.5.tar.xz
|
|
3a161ab65921eed55e1a94251d97c8451d4ba3431b55ca560e95a951b5f1d73a) # automake-1.16.5.tar.xz.sig
|
|
|
|
## 5cd8c521058f520c1d01ab3c1fce60aa122dc5a46ffc1f42f2fe737b5c05c89e automake-1.16.5-02-x86_64.pkg.tar.lz
|
|
|
|
|