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 | |
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')
-rw-r--r-- | development/rgbds/README | 9 | ||||
-rw-r--r-- | development/rgbds/rgbds.SlackBuild | 102 | ||||
-rw-r--r-- | development/rgbds/rgbds.info | 10 | ||||
-rw-r--r-- | development/rgbds/slack-desc | 19 |
4 files changed, 140 insertions, 0 deletions
diff --git a/development/rgbds/README b/development/rgbds/README new file mode 100644 index 0000000000000..e0e489daecc2c --- /dev/null +++ b/development/rgbds/README @@ -0,0 +1,9 @@ +rgbds (cross assembler targeting Nintendo Game Boy and Game Boy Color) + +RGBDS (Rednex Game Boy Development System) is a free assembler/linker +package for the Game Boy and Game Boy Color. It consists of rgbasm +(assembler), rgblink (linker), rgbfix (checksum/header fixer), and +rgbgfx (PNG-to-Game Boy graphics converter). + +This is a fork of the original RGBDS which aims to make the programs +more like other UNIX tools. 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 diff --git a/development/rgbds/rgbds.info b/development/rgbds/rgbds.info new file mode 100644 index 0000000000000..48cbbd5697bc2 --- /dev/null +++ b/development/rgbds/rgbds.info @@ -0,0 +1,10 @@ +PRGNAM="rgbds" +VERSION="0.6.1" +HOMEPAGE="https://github.com/gbdev/rgbds" +DOWNLOAD="https://github.com/gbdev/rgbds/archive/v0.6.1/rgbds-0.6.1.tar.gz" +MD5SUM="7f1fcf3110a15b4ba2c5ccab536585ba" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="B. Watson" +EMAIL="urchlay@slackware.uk" diff --git a/development/rgbds/slack-desc b/development/rgbds/slack-desc new file mode 100644 index 0000000000000..a15dc4bb2add1 --- /dev/null +++ b/development/rgbds/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +rgbds: rgbds (cross assembler targeting Nintendo Game Boy and Game Boy Color) +rgbds: +rgbds: RGBDS (Rednex Game Boy Development System) is a free assembler/linker +rgbds: package for the Game Boy and Game Boy Color. It consists of rgbasm +rgbds: (assembler), rgblink (linker), rgbfix (checksum/header fixer), and +rgbds: rgbgfx (PNG-to-Game Boy graphics converter). +rgbds: +rgbds: This is a fork of the original RGBDS which aims to make the programs +rgbds: more like other UNIX tools. +rgbds: +rgbds: |