diff options
Diffstat (limited to 'community/simh')
-rw-r--r-- | community/simh/LICENSE | 24 | ||||
-rw-r--r-- | community/simh/PKGBUILD | 39 | ||||
-rw-r--r-- | community/simh/simh.install | 23 |
3 files changed, 0 insertions, 86 deletions
diff --git a/community/simh/LICENSE b/community/simh/LICENSE deleted file mode 100644 index 5b0273020..000000000 --- a/community/simh/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ - 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/simh/PKGBUILD b/community/simh/PKGBUILD deleted file mode 100644 index 27fcdf2fa..000000000 --- a/community/simh/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 70434 2012-05-06 12:11:17Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: waterbear <st92.at.freeshell.org> - -pkgname=simh -pkgver=3.9.0 -_pkgver=39-0 -pkgrel=1 -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=('b80385888f23269abaee0bad7d84ea7c' - '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/simh/simh.install b/community/simh/simh.install deleted file mode 100644 index 19779ad80..000000000 --- a/community/simh/simh.install +++ /dev/null @@ -1,23 +0,0 @@ -# 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 -} - |