From e7aca5a095a95ff40fc4f613bcb56558a6e28a91 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Sun, 23 Mar 2014 16:15:40 +0700 Subject: libraries/assimp: Added (Open Asset Import Library). Signed-off-by: Willy Sudiarto Raharjo --- libraries/assimp/README | 5 ++ libraries/assimp/assimp.SlackBuild | 101 +++++++++++++++++++++++++++++++++++++ libraries/assimp/assimp.info | 10 ++++ libraries/assimp/assimp_x64.patch | 19 +++++++ libraries/assimp/doinst.sh | 3 ++ libraries/assimp/slack-desc | 19 +++++++ 6 files changed, 157 insertions(+) create mode 100644 libraries/assimp/README create mode 100644 libraries/assimp/assimp.SlackBuild create mode 100644 libraries/assimp/assimp.info create mode 100644 libraries/assimp/assimp_x64.patch create mode 100644 libraries/assimp/doinst.sh create mode 100644 libraries/assimp/slack-desc (limited to 'libraries/assimp') diff --git a/libraries/assimp/README b/libraries/assimp/README new file mode 100644 index 0000000000..7a52197197 --- /dev/null +++ b/libraries/assimp/README @@ -0,0 +1,5 @@ +Open Asset Import Library is a Open Source library designed to +load various 3d file formats and convert them into a shared, +in-memory format. It supports more than 30 file formats (basically, +it is like DevIL for 3D models). It also supports exporting, but the +number of export formats is lower. diff --git a/libraries/assimp/assimp.SlackBuild b/libraries/assimp/assimp.SlackBuild new file mode 100644 index 0000000000..1a955d1385 --- /dev/null +++ b/libraries/assimp/assimp.SlackBuild @@ -0,0 +1,101 @@ +#!/bin/sh + +# Slackware build script for assimp + +# Copyright 2014 Dimitris Zlatanidis Greece-Orestiada +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=assimp +SRCNAM=assimp- +VERSION=${VERSION:-3.0.1270} +SRCVER=$VERSION-full +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 $SRCNAM-$VERSION-sdk +unzip $CWD/$SRCNAM-$SRCVER.zip +cd $SRCNAM-$VERSION-sdk +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +if [ "$ARCH" = "x86_64" ]; then + patch -p1 < $CWD/assimp_x64.patch +fi + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. + +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 +cp -a CHANGES CREDITS LICENSE README $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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/assimp/assimp.info b/libraries/assimp/assimp.info new file mode 100644 index 0000000000..1a755dd0c0 --- /dev/null +++ b/libraries/assimp/assimp.info @@ -0,0 +1,10 @@ +PRGNAM="assimp" +VERSION="3.0.1270" +HOMEPAGE="http://assimp.sourceforge.net/index.html" +DOWNLOAD="http://downloads.sourceforge.net/project/assimp/assimp-3.0/assimp--3.0.1270-full.zip" +MD5SUM="0038b9d7074265643ca787682baabbf6" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="libminizip" +MAINTAINER="Dimitris Zlatanidis" +EMAIL="d.zlatanidis@gmail.com" diff --git a/libraries/assimp/assimp_x64.patch b/libraries/assimp/assimp_x64.patch new file mode 100644 index 0000000000..b2b7bff162 --- /dev/null +++ b/libraries/assimp/assimp_x64.patch @@ -0,0 +1,19 @@ +--- assimp--3.0.1270-sdk/CMakeLists.original.txt 2014-03-23 08:22:28.393687604 +0200 ++++ assimp--3.0.1270-sdk/CMakeLists.txt 2014-03-23 08:23:05.041229447 +0200 +@@ -32,13 +32,13 @@ + # source tree. During an out-of-source build, however, do not litter this + # directory, since that is probably what the user wanted to avoid. + IF ( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) +- SET( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/lib ) +- SET( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/lib ) ++ SET( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/lib64 ) ++ SET( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/lib64 ) + SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/bin ) + ENDIF ( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) + + # Cache these to allow the user to override them manually. +-SET( LIB_INSTALL_DIR "lib" CACHE PATH ++SET( LIB_INSTALL_DIR "lib64" CACHE PATH + "Path the built library files are installed to." ) + SET( INCLUDE_INSTALL_DIR "include" CACHE PATH + "Path the header files are installed to." ) diff --git a/libraries/assimp/doinst.sh b/libraries/assimp/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/libraries/assimp/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/libraries/assimp/slack-desc b/libraries/assimp/slack-desc new file mode 100644 index 0000000000..a35a32cb91 --- /dev/null +++ b/libraries/assimp/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------------------------------------------------------| +assimp: assimp (Open Asset Import Library) +assimp: +assimp: Open Asset Import Library is a Open Source library designed +assimp: to load various 3d file formats and convert them into a shared, +assimp: in-memory format. It supports more than 30 file formats (basically, +assimp: it is like DevIL for 3D models). It also supports exporting, but +assimp: the number of export formats is lower. +assimp: +assimp: Homepage: http://assimp.sourceforge.net/index.html +assimp: +assimp: -- cgit v1.2.3