void-packages/srcpkgs/fasm/template
Evgeny Ermakov c39080ad9f fasm: update to 1.73.27.
Also add update file.
2021-05-06 14:02:12 -03:00

35 lines
712 B
Bash

# Template file for 'fasm'
pkgname=fasm
version=1.73.27
revision=1
archs="i686* x86_64*"
wrksrc=fasm
short_desc="Fast assembler for the x86 and x86-64 architectures"
maintainer="Dmitry Bogatov <KAction@disroot.org>"
license="BSD-2-Clause"
homepage="https://flatassembler.net"
distfiles="https://flatassembler.net/fasm-${version}.tgz"
checksum=680148377fb6d3b6663852880faa03514d7326b5995742d33a87e244f48cf0b1
nostrip=yes
case ${XBPS_TARGET_MACHINE} in
i686*)
_fasm=./fasm
_source='source/Linux/fasm.asm'
;;
x86_64*)
_fasm=./fasm.x64
_source='source/Linux/x64/fasm.asm'
;;
esac
do_build() {
${_fasm} ${_source} fasm.out
}
do_install() {
vbin fasm.out fasm
vdoc fasm.txt
vlicense license.txt
}