mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
community/hercules to 3.13.00-1
This commit is contained in:
parent
3133fa5432
commit
6bfed147dd
1 changed files with 13 additions and 16 deletions
|
@ -8,37 +8,34 @@
|
|||
# - remove bad mcpu/mtune from configure for ARM
|
||||
|
||||
pkgname=hercules
|
||||
pkgver=3.12
|
||||
pkgrel=2
|
||||
pkgver=3.13.00
|
||||
pkgrel=1
|
||||
pkgdesc='Software implementation of System/370 and ESA/390'
|
||||
arch=('x86_64' 'i686')
|
||||
arch=('x86_64')
|
||||
url='http://www.hercules-390.eu/'
|
||||
license=('custom')
|
||||
depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
|
||||
options=('!makeflags')
|
||||
source=("http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz")
|
||||
sha256sums=('aefbe9d2f09372a530c17c177b7d2a0f4bcf8cfd28474672935b067e5f9ee373')
|
||||
source=("http://downloads.hercules-390.eu/$pkgname-${pkgver%.00}.tar.gz")
|
||||
sha256sums=('890c57c558d58708e55828ae299245bd2763318acf53e456a48aac883ecfe67d')
|
||||
|
||||
prepare() {
|
||||
ln -sf "$pkgname-${pkgver%.00}" p
|
||||
# Change module extension from .la to .so.
|
||||
sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i "$pkgname-$pkgver/hdl.h"
|
||||
sed 's/-mcpu=$host_cpu -mtune=$host_cpu//' -i "$pkgname-$pkgver/configure"
|
||||
sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i p/hdl.h
|
||||
sed 's/-mcpu=$host_cpu -mtune=$host_cpu//' -i p/configure
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-optimization=-O2
|
||||
cd p
|
||||
./configure --prefix=/usr --enable-optimization=-O3
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
cd p
|
||||
DESTDIR="$pkgdir" make install
|
||||
install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/hercules/qpl1"
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
||||
# getver: raw.githubusercontent.com/rbowler/spinhawk/master/makemsi/Hercules-W64.VER
|
||||
|
|
Loading…
Reference in a new issue