16 lines
370 B
Plaintext
16 lines
370 B
Plaintext
# Small example of a native Void source package, cross-built by xbps-src.
|
|
pkgname=fds-demo-hello
|
|
version=1.0
|
|
revision=1
|
|
archs="aarch64"
|
|
short_desc="FDS cartridge hello example"
|
|
maintainer="FDS/OS maintainers"
|
|
license="MIT"
|
|
homepage="https://docs.voidlinux.org/xbps/"
|
|
do_build() {
|
|
${CC} ${CFLAGS} "${FILESDIR}/hello.c" ${LDFLAGS} -o hello
|
|
}
|
|
do_install() {
|
|
vbin hello
|
|
}
|