Advertisement
Guest User

/etc/abuild.conf

a guest
Jul 21st, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.99 KB | None | 0 0
  1. CHOST=x86_64-alpine-linux-musl
  2.  
  3. # for x86_64 we want:
  4. # CHOST=x86_64-alpine-linux-musl
  5.  
  6. # for powerpc we want:
  7. # CHOST=powerpc-alpine-linux-musl
  8.  
  9. export CFLAGS="-Os -fomit-frame-pointer"
  10. export CXXFLAGS="$CFLAGS"
  11. export CPPFLAGS="$CFLAGS"
  12. export LDFLAGS="-Wl,--as-needed"
  13.  
  14. export JOBS=2
  15. export MAKEFLAGS=-j$JOBS
  16.  
  17. # remove line below to disable colors
  18. USE_COLORS=1
  19.  
  20. SRCDEST=/var/cache/distfiles
  21.  
  22. # uncomment line below to store built packages in other location
  23. # The package will be stored as $REPODEST/$repo/$pkgname-$pkgver-r$pkgrel.apk
  24. # where $repo is the name of the parent directory of $startdir.
  25. REPODEST=$HOME/packages/
  26.  
  27. # PACKAGER and MAINTAINER are used by newapkbuild when creating new aports for
  28. # the APKBUILD's "Contributor:" and "Maintainer:" comments, respectively.
  29. #PACKAGER="Your Name <your@email.address>"
  30. #MAINTAINER="$PACKAGER"
  31.  
  32. # what to clean up after a successful build
  33. CLEANUP="srcdir pkgdir deps"
  34.  
  35. # what to cleanup after a failed build
  36. ERROR_CLEANUP="deps"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement