summaryrefslogtreecommitdiff
path: root/community/hercules
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-03-05 00:04:04 -0800
committerroot <root@rshg054.dnsready.net>2013-03-05 00:04:04 -0800
commit582035722561a5ecbadc13abc26331353d810567 (patch)
tree5675deeca2920b9049898c22334a3d5972259547 /community/hercules
parent6b7f3479bf5f3c96f92b3962af6cbf74d627e474 (diff)
Tue Mar 5 00:04:04 PST 2013
Diffstat (limited to 'community/hercules')
-rw-r--r--community/hercules/PKGBUILD37
1 files changed, 21 insertions, 16 deletions
diff --git a/community/hercules/PKGBUILD b/community/hercules/PKGBUILD
index 4f49a03bf..4db656d80 100644
--- a/community/hercules/PKGBUILD
+++ b/community/hercules/PKGBUILD
@@ -1,30 +1,35 @@
-# $Id: PKGBUILD 83152 2013-01-27 16:17:47Z pierre $
+# $Id: PKGBUILD 85609 2013-03-03 23:25:19Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-# Maintainer: Kevin Piche <kevin@archlinux.org>
pkgname=hercules
-pkgver=3.07
-pkgrel=2
-pkgdesc="A software implementation of the mainframe System/370 and ESA/390 architectures"
-url="http://www.hercules-390.org/"
-source=("http://www.hercules-390.org/$pkgname-$pkgver.tar.gz")
-arch=('i686' 'x86_64')
+pkgver=3.08
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Software implementation of System/370 and ESA/390'
+url='http://www.hercules-390.eu/'
+source=("http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz")
license=('custom')
options=('!libtool')
-depends=('bzip2' 'libgcrypt' 'zlib')
-md5sums=('a12aa1645b0695b25b7fc0c9a3ccab3a')
+depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
+sha256sums=('85e217773587f2278d4b6cb6bc815e042cfc982d0fc14baa0da4a84dea399e9d')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
+
# Change module extension from .la to .so.
sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i hdl.h
./configure --prefix=/usr
- make
+ make -j1
}
package() {
- cd $srcdir/$pkgname-$pkgver
- make prefix=$pkgdir/usr install
- install -D -m644 COPYRIGHT \
- $pkgdir/usr/share/licenses/hercules/qpl1
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make prefix="$pkgdir/usr" install
+ install -Dm644 COPYRIGHT \
+ "$pkgdir/usr/share/licenses/hercules/qpl1"
}
+
+# vim:set ts=2 sw=2 et: