Package Details: simh-git 4.0.Beta.1.3575.g4dfb3508-1

Git Clone URL: https://aur.archlinux.org/simh-git.git (read-only, click to copy)
Package Base: simh-git
Description: The Computer History Simulation Project
Upstream URL: http://simh.trailing-edge.com/
Keywords: emulator historic simulator vintage
Licenses: MIT
Conflicts: simh
Provides: simh
Submitter: raymii
Maintainer: ajacocks
Last Packager: ajacocks
Votes: 5
Popularity: 0.022788
First Submitted: 2016-11-19 19:13 (UTC)
Last Updated: 2024-01-09 22:02 (UTC)

Latest Comments

« First ‹ Previous 1 2

Hekuran commented on 2021-04-07 09:48 (UTC)

@ajacocks I have updated the package. I also made a PR to your github repo.

https://github.com/ajacocks/simh-git-aur/pull/1

ajacocks commented on 2021-04-06 16:26 (UTC)

OK, the package is now updated. Anyone interested, please try building it, and let me know any issues or suggestions that you may have.

ajacocks commented on 2021-04-06 16:16 (UTC)

Thanks, raymii. Let me get started on the updates.

raymii commented on 2021-04-06 08:40 (UTC)

@ajacocks I've transfered ownership of this package to you.

ajacocks commented on 2021-03-31 20:48 (UTC)

I have updated the package:

https://github.com/ajacocks/simh-git-aur

Please test. I don't have an email address for the maintainer, so if anyone knows how to contact raymii, please let me know.

simona commented on 2020-11-16 01:20 (UTC)

i have already installed simh. the same paackage?

Mettacrawer commented on 2020-08-23 20:28 (UTC) (edited on 2020-08-23 20:28 (UTC) by Mettacrawer)

==> Starting package()...
install: omitting directory 'buildtools'
==> ERROR: A failure occurred in package().
    Aborting...
error making: simh-git

--- PKGBUILD.DiST   2020-08-23 16:21:08.427811670 -0400
+++ PKGBUILD    2020-08-23 16:21:42.210448233 -0400
@@ -27,6 +27,9 @@
 package() {
   cd "$srcdir/simh/BIN"
   for i in *; do
+    if [ $i = buildtools ]; then
+      continue
+    fi
     install -D $i "$pkgdir/usr/bin/simh-$i"
   done

backerman commented on 2020-02-18 04:16 (UTC)

Fails to build due to a directory being in BIN. (Also cleaned up some trailing spaces.)

diff --git a/PKGBUILD b/PKGBUILD
index 5c670d0..69ddd96 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,14 @@
 # Maintainer: R. van Elst <https://raymii.org>

 pkgname="simh-git"
-pkgver=4.0.Beta.1.757.gff95fb8 
+pkgver=4.0.Beta.1.2205.g545c505f
 pkgrel=1
 pkgdesc="The Computer History Simulation Project"
 arch=('i686' 'x86_64')
 url="http://simh.trailing-edge.com/"
 license=('MIT')
-depends=('libpcap' 'unzip')
+depends=('unzip' 'pcre' 'libpng' 'zlib')
+optdepends=('libpcap: for guest networking' 'sdl2_ttf: for BESM6' 'sdl2: for video')
 makedepends=()
 provides=("${pkgname%-*}")
 conflicts=("${pkgname%-*}")
@@ -21,12 +22,12 @@ pkgver() {

 build() {
   cd "${pkgname%-*}"
-  make 
+  make
 }

 package() {
   cd "$srcdir/simh/BIN"
-  for i in *; do
+  for i in $(find . -maxdepth 1 -type f -printf "%f\n"); do
     install -D $i "$pkgdir/usr/bin/simh-$i"
   done