mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-23 01:21:46 +01:00
35 lines
899 B
Plaintext
35 lines
899 B
Plaintext
# Contributor: Sascha Paunovic <azarus@posteo.net>
|
|
# Maintainer: Sascha Paunovic <azarus@posteo.net>
|
|
pkgname=simh
|
|
pkgver=3.9.0
|
|
_pkgver=39-0
|
|
pkgrel=0
|
|
pkgdesc="simulator for historical computers"
|
|
url="http://simh.trailing-edge.com"
|
|
arch="all"
|
|
license="BSD"
|
|
options="!check"
|
|
makedepends="libpcap-dev"
|
|
source="http://simh.trailing-edge.com/sources/simhv$_pkgver.zip"
|
|
builddir="$srcdir/"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
mkdir -p BIN
|
|
find VAX -type f -exec sed -i 's/SIM_INLINE//' {} +
|
|
make USEN_NETWORK=1 NETWORK_OPT="-DUSE_NETWORK -isystem /usr/include -lpcap"
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/BIN
|
|
for i in *; do
|
|
install -D $i "$pkgdir"/usr/bin/simh-$i
|
|
done
|
|
|
|
cd "$srcdir"/VAX
|
|
mkdir -p "$pkgdir"/usr/lib/simh
|
|
cp *.bin "$pkgdir"/usr/lib/simh
|
|
}
|
|
|
|
sha512sums="5e8cbf92e980b7cb40d68ff60a266f70c0bef0eecdc169a8077ae72a6a71fe12a7be5c62bd033ca36727e2cb8f266a5a6f8a5ed6dd509afbf0a9d7b618f1a4f6 simhv39-0.zip"
|