56 lines
1.9 KiB
Bash
56 lines
1.9 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.17
|
|
pkgrel=01
|
|
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
|
|
|
|
sha512sums=('46aba1c9d64a6368b326020803a2999831c1deaf31eaa1c1dfdcfa5138a7f755643294e82a08b6daab3983b31eee725bdb7b9edc4e9a558374c7d1f1b8e854a7'
|
|
'SKIP')
|
|
|
|
sha256sums=(8920c1fc411e13b90bf704ef9db6f29d540e76d232cb3b2c9f4dc4cc599bd990 # automake-1.17.tar.xz
|
|
14085dcd85164920da538105f388c6d2e2d0211d5e633a3e075691af6b7352cb) # automake-1.17.tar.xz.sig
|
|
|
|
## 0d7206ab4e09f361d1aa5210ac65b54143e9939dd6b5ef0c04c69827fe9da994 automake-1.17-01-x86_64.pkg.tar.lz
|
|
|