diff --git a/Readme.md b/Readme.md index e9a49e9..5234d59 100644 --- a/Readme.md +++ b/Readme.md @@ -200,6 +200,13 @@ Homepage: FORMAT: Arch Linux PKGBUILD script + patch files. +**u3d** +-------------- + +Set of libraries to manipulate U3D-formatted data. IDTF to U3D converter. + +FORMAT: Arch Linux PKGBUILD script + source archive. + **wine** -------------- @@ -224,4 +231,4 @@ FORMAT: Patch files. ZSnes Nintendo SNES emulator for Linux. Netplay version. -FORMAT: Arch Linux PKGBUILD script + patch files. +FORMAT: Arch Linux PKGBUILD script + source archive + patch files. diff --git a/u3d/PKGBUILD b/u3d/PKGBUILD new file mode 100644 index 0000000..8f4fc6b --- /dev/null +++ b/u3d/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer : SpepS +# Contributor: oslik + +pkgname=u3d +pkgver=1.4.4 +pkgrel=1 +pkgdesc="Set of libraries to manipulate U3D-formatted data. IDTF to U3D converter" +url="http://88.192.69/68/ftp/public/other/" +arch=('i686' 'x86_64') +license=('custom:APACHE') +depends=('libpng' 'libjpeg') +options=('!libtool') +source=("./$pkgname-$pkgver.tar.gz") +md5sums=('f9d1c6e9b2135c25958c75532f94c77b') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # missing string.h + sed -i '28i#include ' RTL/Component/Include/IFXAttributes.h + + ./configure --prefix=/usr \ + --enable-static=no + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install + + # license + install -Dm644 COPYING \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} diff --git a/u3d/u3d-1.4.4.tar.gz b/u3d/u3d-1.4.4.tar.gz new file mode 100644 index 0000000..ed3572a Binary files /dev/null and b/u3d/u3d-1.4.4.tar.gz differ