diff options
Diffstat (limited to 'community/wings3d/PKGBUILD')
-rw-r--r-- | community/wings3d/PKGBUILD | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/community/wings3d/PKGBUILD b/community/wings3d/PKGBUILD index 4a3e9d65d..dd72f80de 100644 --- a/community/wings3d/PKGBUILD +++ b/community/wings3d/PKGBUILD @@ -1,52 +1,50 @@ -# $Id: PKGBUILD 86005 2013-03-10 23:35:35Z arodseth $ +# $Id: PKGBUILD 87126 2013-03-27 16:37:11Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: kappa <kappacurve@gmail.com> pkgname=wings3d _pkgname=wings pkgver=1.4.1 -pkgrel=16 +pkgrel=17 pkgdesc='3D modeling program' arch=('x86_64' 'i686') url='http://www.wings3d.com/' license=('GPL') -depends=('erlang' 'erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils') -makedepends=('setconf' 'gendesk') +depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang') +makedepends=('gendesk') optdepends=('povray: rendering support via POV-Ray') install=$pkgname.install -options=('!emptydirs') -_genericname=('3D Modeler') -# Using the i686-only binary release -# Would prefer using a source release, if there is one that compiles -source=("http://sourceforge.net/projects/$_pkgname/files/$_pkgname/$pkgver/$_pkgname-$pkgver-linux.bzip2.run.gz" +source=("$pkgname-$pkgver.tar.gz::https://github.com/dgud/wings/archive/master.tar.gz" + "$pkgname.sh" "$pkgname.png::http://img299.imageshack.us/img299/2538/wingsiconblackshiningew5.png") -sha256sums=('760e19fa4973ed0fc75057897135a8efa241e834b078fc05c28786672137b322' +sha256sums=('5fe17aa7bd26c031ca242f17b24eaa8f6fa9fe4c38b37a9669953c03e9e89b83' + '46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e' '6658977cc3bc8db2c9358edf3a2d6cb6bb8084c9a1d96ca573a83dd4e8781f1a') -if [ "$CARCH" == "x86_64" ] -then - depends=('lib32-libgl' 'lib32-glu' 'lib32-sdl' 'lib32-ncurses') -fi +_genericname=('3D Modeler') +_categories=('Graphics;3DGraphics') build() { cd "$srcdir" gendesk - setconf "$pkgname.desktop" Categories "Graphics;3DGraphics;" - chmod +x "$_pkgname-$pkgver-linux.bzip2.run" - "./$_pkgname-$pkgver-linux.bzip2.run" --nox11 --nochown --tar xf > /dev/null - setconf install_wings INSTALL_DIR "$pkgdir/opt/$pkgname-$pkgver" + cd "$_pkgname-master" + export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*) + make + make lang } package() { - cd "$srcdir" - ./install_wings + cd "$srcdir/$_pkgname-master" - cd "$pkgdir" - setconf "opt/$pkgname-$pkgver/$_pkgname" ROOTDIR "/opt/$pkgname-$pkgver" - install -Dm755 "opt/$pkgname-$pkgver/$_pkgname" "$pkgdir/usr/bin/$pkgname" + mkdir -p "$pkgdir/usr/lib/$pkgname" + for subdir in ebin fonts patches plugins shaders textures; do + cp -r "$srcdir/$_pkgname-master/$subdir/" "$pkgdir/usr/lib/$pkgname" + done - cd "$srcdir" install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + cd "$srcdir" + install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname" install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" install -Dm644 "$pkgname.desktop" \ "$pkgdir/usr/share/applications/$pkgname.desktop" |