Package Details: unigine-tropics 1.3-6

Git Clone URL: https://aur.archlinux.org/unigine-tropics.git (read-only, click to copy)
Package Base: unigine-tropics
Description: Demonstration and benchmarking of the Unigine 3D engine
Upstream URL: http://unigine.com/
Licenses: custom
Submitter: fackamato
Maintainer: dcelasun
Last Packager: dcelasun
Votes: 35
Popularity: 0.002731
First Submitted: 2009-04-09 20:50 (UTC)
Last Updated: 2023-07-24 22:32 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

Behem0th commented on 2010-05-31 15:23 (UTC)

For 1.3 V

Behem0th commented on 2010-05-31 15:22 (UTC)

# Contributor: Anton Bazhenov <anton.bazhenov at gmail> # Contributor: Mathias Burén (fackamato) <mathias.buren@gmail.com> pkgname=unigine-tropics _pkgname=Unigine_Tropics pkgver=1.3 pkgrel=1 pkgdesc="Demonstration of the Unigine 3D engine" arch=('i686' 'x86_64') url="http://unigine.com/" license=('custom') [ `uname -m` = 'i686' ] && depends=('libstdc++5' 'libxrandr' 'libgl' 'openal') [ `uname -m` = 'x86_64' ] && depends=('lib32-libstdc++5' 'lib32-libxrandr' 'lib32-libgl' 'lib32-openal') source=(http://unigine.com/download/files/${_pkgname}-$pkgver.run \ LICENSE) md5sums=('73729f5ccde2bcf991ecff10feb6dbdf' '322eea429002108ec286be641c5b9549') build() { cd $srcdir sh ${_pkgname}-$pkgver.run install -m755 -d $pkgdir/opt/$pkgname cp -r tropics/* $pkgdir/opt/$pkgname/ for _file in $pkgdir/opt/$pkgname/*.sh; do sed -i "s_\./bin_/opt/$pkgname/bin_" $_file install -m755 -D $_file $pkgdir/usr/bin/${pkgname}_${_file/*\//} rm -f $_file done find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} + find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} + find $pkgdir/opt/$pkgname -name Tropics -exec chmod 755 {} + install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE }