diff options
author | B. Watson <urchlay@slackware.uk> | 2023-01-22 10:19:48 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-01-28 08:22:57 +0700 |
commit | b3f05ab27e03b3f55fbf7355b6c1e69ff4c6f188 (patch) | |
tree | 08a11a1a24ef8675bdb7599ab0a682d92a8992e0 /development/rgbds/rgbds.SlackBuild | |
parent | 89c4e960be0d6783bf9cddba504776d9f2747b79 (diff) |
development/rgbds: Added (assembler targeting Game Boy (+Color))
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/rgbds/rgbds.SlackBuild')
-rw-r--r-- | development/rgbds/rgbds.SlackBuild | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/development/rgbds/rgbds.SlackBuild b/development/rgbds/rgbds.SlackBuild new file mode 100644 index 0000000000000..edbe3863e567a --- /dev/null +++ b/development/rgbds/rgbds.SlackBuild @@ -0,0 +1,102 @@ +#!/bin/bash + +# Slackware build script for rgbds + +# Written by B. Watson (urchlay@slackware.uk) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=rgbds +VERSION=${VERSION:-0.6.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +# Fix hardcoded man page path, and do not install tests/ binaries to +# $PKG/$PKG (ugh). +sed -i 's,share/man,man,' CMakeLists.txt +sed -i '/^install(/s,\(DESTINATION\).*,\1 bin),' test/CMakeLists.txt + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -DMANDIR=/usr/man \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install/strip DESTDIR=$PKG +cd .. + +gzip -9 $PKG/usr/man/man*/* + +# bash and zsh completions are a nice extra, they seem to work OK. +BCOMP=$PKG/usr/share/bash-completion/completions +ZCOMP=$PKG/usr/share/zsh/site-functions +mkdir -p $BCOMP $ZCOMP +for i in contrib/bash_compl/_*.bash; do + fname="$( basename $i | cut -d_ -f2 | cut -d. -f1 )" + cat $i > $BCOMP/$fname +done +install -m0644 contrib/zsh_compl/_* $ZCOMP + +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC/contrib +cp -a CONTRIB* LICENSE* README* RELEASE* $PKGDOC +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild + +# no idea if this stuff is useful, put it in the doc dir. +install -m0644 contrib/*.bash $PKGDOC/contrib + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |