bsnes.build 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/bin/sh
  2. # build script for bsnes
  3. # Copyright 2020 orbea
  4. # All rights reserved.
  5. #
  6. # Redistribution and use of this script, with or without modification, is
  7. # permitted provided that the following conditions are met:
  8. #
  9. # 1. Redistributions of this script must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. #
  12. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
  13. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  15. # EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  16. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  17. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  18. # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  19. # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  20. # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  21. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. set -euf
  23. cd -- "$(cd -- "${0%/*}/" && pwd -P)"
  24. PRGNAM=bsnes
  25. BRANCH=${BRANCH:-master}
  26. URL="https://github.com/$PRGNAM-emu/$PRGNAM.git"
  27. . ../../functions
  28. . ../env.games
  29. _git "$SRC" "$PRGNAM" "$URL" "$TMP" "$BRANCH" "${COMMIT:-}"
  30. _flags
  31. if [ "$DEBUG" = 1 ]; then
  32. RELEASE=debug
  33. else
  34. RELEASE=release
  35. fi
  36. # Improve 'make install' for distros.
  37. # https://github.com/bsnes-emu/bsnes/pull/131
  38. # https://github.com/bsnes-emu/bsnes/issues/70
  39. patch -p1 < "$CWD"/131.patch
  40. _make '' "$SRC"/$PRGNAM/GNUmakefile \
  41. prefix="$PKG" \
  42. bindir="$PKG"/games \
  43. datadir="$PKG"/share/games \
  44. compiler="${CXX:-g++}" \
  45. local=false \
  46. build=$RELEASE \
  47. DESTDIR="$DST"
  48. _install_strip "$PRGNAM" "$VERSION" "$PKG" "$SRC" CREDITS.md GPLv3.txt \
  49. LICENSE.txt README.md
  50. exit 0