diff options
author | B. Watson <yalhcru@gmail.com> | 2014-08-05 08:34:40 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-05 08:34:40 +0700 |
commit | 75770501de91dd90d4fc17df29b3babd1b574cc7 (patch) | |
tree | 342e9a6e107baf14e6fef5726fb3eaaf5b8f55d4 /games/uqm_remixes | |
parent | 7479575d3389e179b01c6aa7bfbbd171f438e9e5 (diff) |
games/uqm_remixes: Added (remixed music for uqm).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/uqm_remixes')
-rw-r--r-- | games/uqm_remixes/README | 6 | ||||
-rw-r--r-- | games/uqm_remixes/slack-desc | 19 | ||||
-rw-r--r-- | games/uqm_remixes/uqm_remixes.SlackBuild | 47 | ||||
-rw-r--r-- | games/uqm_remixes/uqm_remixes.info | 16 |
4 files changed, 88 insertions, 0 deletions
diff --git a/games/uqm_remixes/README b/games/uqm_remixes/README new file mode 100644 index 000000000000..9f30665a58bb --- /dev/null +++ b/games/uqm_remixes/README @@ -0,0 +1,6 @@ +uqm_remixes (remixed music for uqm) + +All 4 of the official Ur-Quan Masters remix packs, by the Precursors. + +To hear the remixed tracks in the game, they must be selected from the +in-game menu. diff --git a/games/uqm_remixes/slack-desc b/games/uqm_remixes/slack-desc new file mode 100644 index 000000000000..5df7164d7069 --- /dev/null +++ b/games/uqm_remixes/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------------------------------------------------------| +uqm_remixes: uqm_remixes (remixed music for uqm) +uqm_remixes: +uqm_remixes: All 4 of the official Ur-Quan Masters remix packs, by the Precursors. +uqm_remixes: +uqm_remixes: To hear the remixed tracks in the game, they must be selected from the +uqm_remixes: in-game menu. +uqm_remixes: +uqm_remixes: +uqm_remixes: +uqm_remixes: +uqm_remixes: diff --git a/games/uqm_remixes/uqm_remixes.SlackBuild b/games/uqm_remixes/uqm_remixes.SlackBuild new file mode 100644 index 000000000000..86bde288246e --- /dev/null +++ b/games/uqm_remixes/uqm_remixes.SlackBuild @@ -0,0 +1,47 @@ +#!/bin/sh + +# Slackware build script for uqm_remixes + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +# Upstream's files are unversioned. VERSION here is the version of uqm the +# files are intended for (according to their web site). + +PRGNAM=uqm_remixes +VERSION=${VERSION:-0.7.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT + +mkdir -p $PKG/usr/share/uqm/content/addons/ + +# "sources" are zip files that don't get extracted (game uses them as-is). +for disc in 1 2 3 4; do + install -m0644 -oroot -groot \ + $CWD/uqm-remix-disc$disc.uqm \ + $PKG/usr/share/uqm/content/addons/ +done + +# There is no documentation, so I include my own README. +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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:-tgz} diff --git a/games/uqm_remixes/uqm_remixes.info b/games/uqm_remixes/uqm_remixes.info new file mode 100644 index 000000000000..660407d9b967 --- /dev/null +++ b/games/uqm_remixes/uqm_remixes.info @@ -0,0 +1,16 @@ +PRGNAM="uqm_remixes" +VERSION="0.7.0" +HOMEPAGE="http://sc2.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/project/sc2/UQM%20Remix%20Packs/UQM%20Remix%20Pack%201/uqm-remix-disc1.uqm \ + http://downloads.sourceforge.net/project/sc2/UQM%20Remix%20Packs/UQM%20Remix%20Pack%202/uqm-remix-disc2.uqm \ + http://downloads.sourceforge.net/project/sc2/UQM%20Remix%20Packs/UQM%20Remix%20Pack%203/uqm-remix-disc3.uqm \ + http://downloads.sourceforge.net/project/sc2/UQM%20Remix%20Packs/UQM%20Remix%20Pack%204/uqm-remix-disc4.uqm" +MD5SUM="09f242d8d72166d1d5ccbd3d99c93e7d \ + fbc8bdcb709939d559d8c7216ad15cc2 \ + 5ccc6d4ac301ae98e172ac6835dcdead \ + d3dc6036588662391a3820ca6b222dd6" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="uqm" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" |