Search Criteria
Package Details: sjasmplus 20190306.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/sjasmplus.git (read-only, click to copy) |
---|---|
Package Base: | sjasmplus |
Description: | SJAsmPlus: Z80 cross-assembler |
Upstream URL: | https://github.com/sjasmplus/sjasmplus/wiki |
Licenses: | zlib |
Submitter: | mkoloberdin |
Maintainer: | mkoloberdin |
Last Packager: | mkoloberdin |
Votes: | 2 |
Popularity: | 0.000000 |
First Submitted: | 2019-03-04 03:45 (UTC) |
Last Updated: | 2019-03-06 22:00 (UTC) |
Latest Comments
ListerOfSmeg commented on 2024-10-16 09:43 (UTC)
Package is incorrectly flagged out of date. The later release referenced in the reason is from the z00m128 fork (https://github.com/z00m128/sjasmplus) which has is own package (https://aur.archlinux.org/packages/sjasmplus-z00m128).
smorky commented on 2023-07-10 18:07 (UTC)
boost
is missing from the dependency list - as it buildssjasmplus
from source, it requires the development headers to be installed as well, not just the runtime libraries fromboost-libs
.mkoloberdin commented on 2022-04-08 15:18 (UTC)
leo72, it's a completely different fork of sjasmplus, not entirely compatible. Perhaps you could create a new package -
sjasmplus-z00m
or something?leo72 commented on 2022-04-04 15:47 (UTC)
Please use this PKGBUILD to compile the last (at the date of 2022-04-04) version of the program:
Maintainer: Michael Koloberdin koloberdin@gmail.com
Contributor: Leonardo Miliani <leonardo AT leonardomiliani DOT com>
pkgname=sjasmplus pkgver=1.19.0 pkgrel=1 pkgdesc="SJAsmPlus: Z80 cross-assembler" arch=(x86_64) url="https://github.com/sjasmplus/sjasmplus/wiki" license=(ZLIB) depends=(boost-libs) makedepends=(cmake) source=("https://github.com/z00m128/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.xz")
sha256sums=('0d17e9a7f34811ca927803d6502e5620b32b14b13d4d8e782ade45cb2ef70c26')
prepare() { mkdir -p build }
build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release make -j }
package() { cd build install -Dm755 sjasmplus "$pkgdir/usr/bin/sjasmplus" }