libraries/fmodapi: Added to 13.0 repository
This commit is contained in:
parent
245ebd55dd
commit
2ba025961b
|
@ -0,0 +1,7 @@
|
|||
fmodapi (FMODex: a cross platform audio library)
|
||||
|
||||
It let you easily implement the latest audio technologies into your
|
||||
title. No other audio library has such comprehensive, up to date
|
||||
platform support. FMOD now supports 12 platforms! FMOD is not only
|
||||
the best cross platform audio engine for your needs, but it is the
|
||||
best audio engine available on each platform.
|
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for fmodapi
|
||||
|
||||
# Written by Pablo Santamaria (pablosantamaria@gmail.com)
|
||||
|
||||
PRGNAM=fmodapi
|
||||
VERSION=${VERSION:-4.28.06}
|
||||
SRCVER=$( echo $VERSION | sed 's/\.//g' )
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf ${PRGNAM}${SRCVER}linux${LIBDIRSUFFIX}
|
||||
tar xvf $CWD/${PRGNAM}${SRCVER}linux${LIBDIRSUFFIX}.tar.gz
|
||||
cd ${PRGNAM}${SRCVER}linux${LIBDIRSUFFIX}
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}
|
||||
mkdir -p $PKG/usr/include/fmodex
|
||||
|
||||
( cd api/lib
|
||||
cp -a libfmodex*.so* $PKG/usr/lib${LIBDIRSUFFIX}
|
||||
)
|
||||
|
||||
( cd api/inc
|
||||
cp -a * $PKG/usr/include/fmodex
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a documentation/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
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}
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="fmodapi"
|
||||
VERSION="4.28.06"
|
||||
HOMEPAGE="http://www.fmod.org/"
|
||||
DOWNLOAD="http://www.fmod.org/index.php/release/version/fmodapi42806linux.tar.gz"
|
||||
MD5SUM="c328e7a0e53f88b338e3446971b4083e"
|
||||
DOWNLOAD_x86_64="http://www.fmod.org/index.php/release/version/fmodapi42806linux64.tar.gz"
|
||||
MD5SUM_x86_64="3fba47a8ba14570710c041d3560a89bb"
|
||||
MAINTAINER="Pablo Santamaria"
|
||||
EMAIL="pablosantamaria@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
|
@ -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------------------------------------------------------|
|
||||
fmodapi: fmodapi (FMODex: a cross platform audio library)
|
||||
fmodapi:
|
||||
fmodapi: It let you easily implement the latest audio technologies into your
|
||||
fmodapi: title. No other audio library has such comprehensive, up to date
|
||||
fmodapi: platform support. FMOD now supports 12 platforms! FMOD is not only
|
||||
fmodapi: the best cross platform audio engine for your needs, but it is the
|
||||
fmodapi: best audio engine available on each platform.
|
||||
fmodapi:
|
||||
fmodapi:
|
||||
fmodapi:
|
||||
fmodapi:
|
Loading…
Reference in New Issue