Initial commit
This commit is contained in:
39
dists/slackware/scummvm.SlackBuild
Normal file
39
dists/slackware/scummvm.SlackBuild
Normal file
@@ -0,0 +1,39 @@
|
||||
#!/bin/sh
|
||||
# ScummVM Slackware 9(.1) Package Creation Script
|
||||
# Initial version by Jay Lanagan <roni@parodius.com>
|
||||
# Updated by Robert Kelsen <rkelsen@optusnet.com.au>
|
||||
|
||||
CWD=`pwd`
|
||||
if [ "$TMP" = "" ]; then
|
||||
TMP=/tmp
|
||||
fi
|
||||
PKG=$TMP/package-scummvm
|
||||
|
||||
VERSION=2026.1.1git
|
||||
ARCH=i486
|
||||
BUILD=1
|
||||
|
||||
if [ ! -d $TMP ]; then
|
||||
mkdir -p $TMP
|
||||
fi
|
||||
if [ ! -d $PKG ]; then
|
||||
mkdir -p $PKG
|
||||
fi
|
||||
|
||||
#cd $TMP
|
||||
tar xvf scummvm-$VERSION.tar.bz2
|
||||
cd scummvm-$VERSION
|
||||
./configure --prefix=/usr --bindir=/usr/games
|
||||
make
|
||||
strip scummvm
|
||||
make install DESTDIR=$PKG
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cd $PKG
|
||||
chown -R root.root .
|
||||
makepkg -l y -c n $TMP/scummvm-$VERSION-$ARCH-$BUILD.tgz
|
||||
|
||||
if [ "$1" = "--cleanup" ]; then
|
||||
rm -rf $TMP/scummvm-$VERSION
|
||||
rm -rf $PKG
|
||||
fi
|
||||
39
dists/slackware/scummvm.SlackBuild.in
Normal file
39
dists/slackware/scummvm.SlackBuild.in
Normal file
@@ -0,0 +1,39 @@
|
||||
#!/bin/sh
|
||||
# ScummVM Slackware 9(.1) Package Creation Script
|
||||
# Initial version by Jay Lanagan <roni@parodius.com>
|
||||
# Updated by Robert Kelsen <rkelsen@optusnet.com.au>
|
||||
|
||||
CWD=`pwd`
|
||||
if [ "$TMP" = "" ]; then
|
||||
TMP=/tmp
|
||||
fi
|
||||
PKG=$TMP/package-scummvm
|
||||
|
||||
VERSION=@VERSION@
|
||||
ARCH=i486
|
||||
BUILD=1
|
||||
|
||||
if [ ! -d $TMP ]; then
|
||||
mkdir -p $TMP
|
||||
fi
|
||||
if [ ! -d $PKG ]; then
|
||||
mkdir -p $PKG
|
||||
fi
|
||||
|
||||
#cd $TMP
|
||||
tar xvf scummvm-$VERSION.tar.bz2
|
||||
cd scummvm-$VERSION
|
||||
./configure --prefix=/usr --bindir=/usr/games
|
||||
make
|
||||
strip scummvm
|
||||
make install DESTDIR=$PKG
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cd $PKG
|
||||
chown -R root.root .
|
||||
makepkg -l y -c n $TMP/scummvm-$VERSION-$ARCH-$BUILD.tgz
|
||||
|
||||
if [ "$1" = "--cleanup" ]; then
|
||||
rm -rf $TMP/scummvm-$VERSION
|
||||
rm -rf $PKG
|
||||
fi
|
||||
19
dists/slackware/slack-desc
Normal file
19
dists/slackware/slack-desc
Normal file
@@ -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 ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
scummvm: ScummVM
|
||||
scummvm:
|
||||
scummvm: ScummVM is a collection of interpreters, capable of emulating
|
||||
scummvm: several adventure game engines. ScummVM mainly supports engines
|
||||
scummvm: created using SCUMM (Script Creation Utility for Maniac Mansion),
|
||||
scummvm: used in various LucasArts games such as Monkey Island, Day of the
|
||||
scummvm: Tentacle, and others. ScummVM also contains interpreters for several
|
||||
scummvm: non-SCUMM games, currently these are Beneath a Steel Sky, Broken
|
||||
scummvm: Sword I & II and Simon the Sorcerer 1 & 2.
|
||||
scummvm:
|
||||
scummvm:
|
||||
Reference in New Issue
Block a user