diff options
author | root <root@rshg054.dnsready.net> | 2012-02-12 23:15:07 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-12 23:15:07 +0000 |
commit | 0020cc650ff973f269f23332e82fc097254d0adc (patch) | |
tree | 4eb4ed0d80064cbc09ee64ac2f9a4dc53ef2fb89 /community-staging | |
parent | cfceb92e73d7f6a32494f0ba258b98748af43f34 (diff) |
Sun Feb 12 23:15:07 UTC 2012
Diffstat (limited to 'community-staging')
-rw-r--r-- | community-staging/simh/LICENSE | 24 | ||||
-rw-r--r-- | community-staging/simh/PKGBUILD | 39 | ||||
-rw-r--r-- | community-staging/simh/simh.install | 23 |
3 files changed, 86 insertions, 0 deletions
diff --git a/community-staging/simh/LICENSE b/community-staging/simh/LICENSE new file mode 100644 index 000000000..5b0273020 --- /dev/null +++ b/community-staging/simh/LICENSE @@ -0,0 +1,24 @@ + Original code published in 1993-2005, written by Robert M Supnik + Copyright (c) 1993-2005, Robert M Supnik + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Robert M Supnik shall not be + used in advertising or otherwise to promote the sale, use or other dealings + in this Software without prior written authorization from Robert M Supnik. + diff --git a/community-staging/simh/PKGBUILD b/community-staging/simh/PKGBUILD new file mode 100644 index 000000000..b75f1c554 --- /dev/null +++ b/community-staging/simh/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 64274 2012-02-11 04:56:12Z heftig $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: waterbear <st92.at.freeshell.org> + +pkgname=simh +pkgver=3.8.1 +_pkgver=38-1 +pkgrel=3 +pkgdesc="simulator for assorted historical computers, from Altair to VAX" +arch=('i686' 'x86_64') +url="http://simh.trailing-edge.com" +license=("BSD") +depends=("libpcap") +makedepends=("unzip") +install=simh.install +source=("http://simh.trailing-edge.com/sources/simhv${_pkgver}.zip" + "LICENSE") +md5sums=('e15f65a82e21ea49e14b438326d93d5c' + 'd56eefa5d020ee2b77d21280fef80e3d') + +build() { + cd "$srcdir" + mkdir -p BIN + find VAX -type f -exec sed -i 's/SIM_INLINE//' {} + + make USE_NETWORK=1 NETWORK_OPT='-DUSE_NETWORK -isystem /usr/include -lpcap' +} + +package() { + cd "$srcdir/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" + + install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} diff --git a/community-staging/simh/simh.install b/community-staging/simh/simh.install new file mode 100644 index 000000000..19779ad80 --- /dev/null +++ b/community-staging/simh/simh.install @@ -0,0 +1,23 @@ +# arg 1: the new package version +post_install() { + echo -e "-> The VAX ROM images are located in /usr/lib/simh." + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install $1 + /bin/true +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + |