abuild/abuild.conf

35 lines
867 B
Plaintext
Raw Normal View History

2014-06-20 08:36:27 +00:00
CHOST=i486-alpine-linux-musl
# for x86_64 we want:
2014-06-20 08:36:27 +00:00
# CHOST=x86_64-alpine-linux-musl
# for powerpc we want:
2014-06-20 08:36:27 +00:00
# CHOST=powerpc-alpine-linux-musl
export CFLAGS="-Os -fomit-frame-pointer"
2008-10-18 08:09:24 +00:00
export CXXFLAGS="$CFLAGS"
export CPPFLAGS="$CFLAGS"
export LDFLAGS="-Wl,--as-needed"
2008-10-18 08:09:24 +00:00
export JOBS=2
export MAKEFLAGS=-j$JOBS
2008-11-08 11:05:45 +00:00
# remove line below to disable colors
USE_COLORS=1
SRCDEST=/var/cache/distfiles
# uncomment line below to store built packages in other location
# The package will be stored as $REPODEST/$repo/$pkgname-$pkgver-r$pkgrel.apk
# where $repo is the name of the parent directory of $startdir.
REPODEST=$HOME/packages/
2009-01-29 11:56:03 +00:00
# PACKAGER is used to create new aports with 'newapkbuild ...'
2009-01-29 11:56:03 +00:00
#PACKAGER="Your Name <your@email.address>"
# what to clean up after a successful build
CLEANUP="srcdir pkgdir deps"
# what to cleanup after a failed build
ERROR_CLEANUP="deps"