diff --git a/srcpkgs/asm6/template b/srcpkgs/asm6/template new file mode 100644 index 00000000000..ca9b8fdd92c --- /dev/null +++ b/srcpkgs/asm6/template @@ -0,0 +1,21 @@ +# Template file for 'asm6' +pkgname=asm6 +version=1.6 +revision=1 +create_wrksrc=yes +hostmakedepends="unzip" +short_desc="Simple but functional 6502 assembler" +maintainer="rc-05 " +license="Public Domain" +homepage="https://3dscapture.com/NES" +distfiles="https://3dscapture.com/NES/asm6.zip" +checksum=b37956f37815a75a6712c0d1f8eea06d1207411921c2e7ff46a133f35f0b3e1d + +do_build() { + ${CC} -Wall -pedantic -std=c17 -O3 -o asm6 asm6.c +} + +do_install() { + vbin asm6 + vdoc README.TXT +}