Package Details: asmfish-git 135-1

Git Clone URL: https://aur.archlinux.org/asmfish-git.git (read-only, click to copy)
Package Base: asmfish-git
Description: Stockfish translated into assembly language.
Upstream URL: https://github.com/lantonov/asmFish
Licenses: GPL2
Conflicts: asmfish
Provides: asmfish
Submitter: ghotrix
Maintainer: ghotrix
Last Packager: ghotrix
Votes: 1
Popularity: 0.000000
First Submitted: 2018-02-26 20:17 (UTC)
Last Updated: 2024-02-05 10:02 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

ghotrix commented on 2024-02-05 10:02 (UTC)

Fixed.

megapoliss commented on 2024-02-05 09:39 (UTC)

Cannot be build with shipped fasmg:

PKGBUILD: line 22: 2348713 Segmentation fault (core dumped) ./fasmg "x86/fish.asm" "asmfish" -e 100 -i "VERSION_OS='L'" -i "VERSION_POST = 'popcnt'

But build successfully with fasmg dependency:

diff --git a/PKGBUILD b/PKGBUILD
index 714322f..ce5b907 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgdesc="Stockfish translated into assembly language."
 arch=('i686' 'x86_64')
 url="https://github.com/lantonov/asmFish"
 license=('GPL2')
-makedepends=('git')
+makedepends=('git' 'fasmg')
 optdepends=('xboard' 'scid_vs_pc')
 provides=('asmfish')
 conflicts=('asmfish')
@@ -21,7 +21,7 @@ pkgver() {

 build() {
     cd "${srcdir}/${_pkgname}"
-    ./fasmg "x86/fish.asm" "asmfish" -e 100 -i "VERSION_OS='L'" -i "VERSION_POST = 'popcnt'"
+    fasmg "x86/fish.asm" "asmfish" -e 100 -i "VERSION_OS='L'" -i "VERSION_POST = 'popcnt'"
 }

 check() {