summaryrefslogtreecommitdiffstats
path: root/libraries/ogre/ogre.SlackBuild
diff options
context:
space:
mode:
author Roberto Metere <roberto.metere@gmail.com>2014-11-12 08:19:36 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-11-12 08:20:19 +0700
commit9e5935df986caa56543068cd77f3cae1e4aa9338 (patch)
treecb5c0152db955ffb13ade89fe87c7736e4e7eb9e /libraries/ogre/ogre.SlackBuild
parenta548727b296be8f78a21dea7c3c313c72d45bfe1 (diff)
downloadslackbuilds-9e5935df986caa56543068cd77f3cae1e4aa9338.tar.gz
slackbuilds-9e5935df986caa56543068cd77f3cae1e4aa9338.tar.xz
libraries/ogre: Updated for version 1.9.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/ogre/ogre.SlackBuild')
-rw-r--r--libraries/ogre/ogre.SlackBuild17
1 files changed, 9 insertions, 8 deletions
diff --git a/libraries/ogre/ogre.SlackBuild b/libraries/ogre/ogre.SlackBuild
index 3c5b7da144..9e97a0433d 100644
--- a/libraries/ogre/ogre.SlackBuild
+++ b/libraries/ogre/ogre.SlackBuild
@@ -25,11 +25,12 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ogre
-VERSION=${VERSION:-1.8.1}
+VERSION=${VERSION:-1.9}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCNAM="${PRGNAM}_src_v${VERSION//./-}"
+SRCNAM="sinbad-ogre-dd4dd5572adc" # This is just temporary
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -86,15 +87,15 @@ tar xvf $CWD/$SRCNAM.tar.bz2
cd $SRCNAM
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
- -DOGRE_LIB_DIRECTORY=/usr/lib${LIBDIRSUFFIX} \
+ -DOGRE_LIB_DIRECTORY=lib${LIBDIRSUFFIX} \
-DOGRE_BUILD_COMPONENT_PAGING=$OGRE_BUILD_COMPONENT_PAGING \
-DOGRE_BUILD_COMPONENT_PROPERTY=$OGRE_BUILD_COMPONENT_PROPERTY \
-DOGRE_BUILD_COMPONENT_RTSHADERS=$OGRE_BUILD_COMPONENT_RTSHADERS \
@@ -116,7 +117,7 @@ cd build
make install DESTDIR=$PKG
cd -
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
@@ -127,4 +128,4 @@ 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}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}