void-packages/srcpkgs/fasm/template
2020-05-02 16:23:17 +02:00

35 lines
712 B
Bash

# Template file for 'fasm'
pkgname=fasm
version=1.73.24
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=f3c83975a36d9095e64bb3f60f2f0844355cb502391efce9d611c18a34ec5b90
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
}