forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upstream update. git-svn-id: file:///srv/repos/svn-packages/svn@299767 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
lfleischer
committed
Jul 6, 2017
1 parent
33a0052
commit 6ce4916
Showing
3 changed files
with
11 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# $Id$ | ||
# Maintainer: Allan McRae <[email protected]> | ||
# Maintainer: Lukas Fleischer <[email protected]> | ||
# Contributor: Allan McRae <[email protected]> | ||
# Contributor: judd <[email protected]> | ||
|
||
pkgname=automake | ||
pkgver=1.15 | ||
pkgrel=2 | ||
pkgver=1.15.1 | ||
pkgrel=1 | ||
pkgdesc="A GNU tool for automatically creating Makefiles" | ||
arch=('any') | ||
license=('GPL') | ||
|
@@ -14,42 +14,32 @@ depends=('perl' 'bash') | |
makedepends=('autoconf') | ||
checkdepends=('dejagnu' 'gcc-fortran' 'java-environment' 'vala' 'emacs' 'cscope') # 'python' | ||
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig} | ||
automake-1.15-perl-regex.patch | ||
automake-1.15-gzip-envvar.patch | ||
automake-1.15-dejagnu-testcase.patch) | ||
md5sums=('9a1ddb0e053474d9d1105cfe39b0c48d' | ||
md5sums=('24cd3501b6ad8cd4d7e2546f07e8b4d4' | ||
'SKIP' | ||
'ec24c629cad74c88555ee499c38dbd6e' | ||
'fa71c83d3f9d32d9a4007152b829074c' | ||
'ffa4dd8eb78cea82c3009d76087598b1') | ||
validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573') # Stefano Lattarini | ||
|
||
validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573' # Stefano Lattarini | ||
'F2A38D7EEB2B66405761070D0ADEE10094604D37') # Mathieu Lirzin | ||
|
||
prepare() { | ||
cd ${srcdir}/${pkgname}-${pkgver} | ||
|
||
# fix regex issue with recent perl | ||
patch -p1 -i $srcdir/automake-1.15-perl-regex.patch | ||
|
||
# fix testsuite issues with recent gzip | ||
patch -p1 -i $srcdir/automake-1.15-gzip-envvar.patch | ||
|
||
# fix testsuite issue with resent dejagnu | ||
patch -p1 -i $srcdir/automake-1.15-dejagnu-testcase.patch | ||
} | ||
|
||
build() { | ||
cd ${srcdir}/${pkgname}-${pkgver} | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
./configure --build=$CHOST --prefix=/usr | ||
make | ||
} | ||
|
||
check() { | ||
cd ${srcdir}/${pkgname}-${pkgver} | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
make check | ||
} | ||
|
||
package() { | ||
cd ${srcdir}/${pkgname}-${pkgver} | ||
make DESTDIR=${pkgdir} install | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
make DESTDIR="${pkgdir}" install | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.