19 lines
444 B
Bash
19 lines
444 B
Bash
|
# Template build file for 'bff'.
|
||
|
pkgname=bff
|
||
|
version=1.0
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
short_desc="Brainfuck interpreter (DBFI dialect)"
|
||
|
maintainer="ananteris <ananteris@mailinator.com>"
|
||
|
homepage="http://mazonka.com/brainf/"
|
||
|
build_style=fetch
|
||
|
distfiles="${homepage}/bff4.c"
|
||
|
license="Public Domain"
|
||
|
checksum=6139b587a7ac40b0bda023064172e9bbccfce15cd8c879ec601e8ee70b83aec3
|
||
|
|
||
|
do_install() {
|
||
|
$CC $CFLAGS $LDFLAGS bff4.c -o bff
|
||
|
vbin bff
|
||
|
}
|
||
|
|