Advertisement
timcowchip

pkgmk.conf

May 4th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. #
  2. # /etc/pkgmk.conf: pkgmk(8) configuration
  3. #
  4. export CFLAGS="-O2 -march=atom -pipe"
  5. export CXXFLAGS="${CFLAGS}"
  6. export LDFLAGS="-Wl,--as-needed"
  7. # export MAKEFLAGS="-j2"
  8.  
  9. case ${PKGMK_ARCH} in
  10. "64"|"")
  11. ;;
  12. "32")
  13. export CFLAGS="${CFLAGS} -m32"
  14. export CXXFLAGS="${CXXFLAGS} -m32"
  15. export LDFLAGS="${LDFLAGS} -m32"
  16. export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
  17. ;;
  18. *)
  19. echo "Unknown architecture selected! Exiting."
  20. exit 1
  21. ;;
  22. esac
  23.  
  24. # PKGMK_SOURCE_MIRRORS=()
  25. # PKGMK_SOURCE_DIR="$PWD"
  26. # PKGMK_PACKAGE_DIR="$PWD"
  27. # PKGMK_WORK_DIR="$PWD/work"
  28. # PKGMK_DOWNLOAD="no"
  29. PKGMK_IGNORE_FOOTPRINT="yes"
  30. # PKGMK_IGNORE_NEW="no"
  31. # PKGMK_NO_STRIP="no"
  32. # PKGMK_WGET_OPTS=""
  33. # PKGMK_COMPRESSION_MODE="gz"
  34.  
  35. # End of file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement