diff options
author | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-09-18 23:41:48 -0500 |
---|---|---|
committer | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-09-18 23:41:48 -0500 |
commit | fa95bb04dbbc63d07b1f84fb8ce5272085097eb7 (patch) | |
tree | 09eb51305956e84dfb79aa89f5b99e595371c54d /community/assimp | |
parent | 6eefbbf4300e680dc93487c11a1ae35ee8299f06 (diff) | |
parent | 5a05be089c68617c86c9c555e63f2b0314451ebf (diff) |
Merge branch 'master' of gitpar:abslibre-mips64el
Diffstat (limited to 'community/assimp')
-rw-r--r-- | community/assimp/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/assimp/PKGBUILD b/community/assimp/PKGBUILD index 8dc5bff69..215c165f5 100644 --- a/community/assimp/PKGBUILD +++ b/community/assimp/PKGBUILD @@ -2,21 +2,22 @@ # Contributor: jepaan <jepaan at hotmail dot com> pkgname=assimp -pkgver=2.0.863 +pkgver=3.0 pkgrel=1 pkgdesc="Portable Open Source library to import various well-known 3D model formats in an uniform manner" arch=('i686' 'x86_64') license=('BSD') -makedepends=('cmake' 'boost') +depends=('libxmu') +makedepends=('cmake' 'boost' 'freeglut') url=('http://assimp.sourceforge.net/index.html') -source=("http://downloads.sourceforge.net/assimp/assimp--${pkgver}-sdk.zip") -md5sums=('9f41662501bd9d9533c4cf03b7c25d5b') +source=("http://downloads.sourceforge.net/assimp/assimp-${pkgver}-src.tar.gz") +md5sums=('2cb57a3f9c9930dc3320a93670ec6fdf') build() { cd ${srcdir} mkdir build cd build - cmake ../${pkgname}--${pkgver}-sdk \ + cmake ../${pkgname}-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr make } @@ -25,5 +26,5 @@ package() { cd ${srcdir}/build make DESTDIR=$pkgdir install - install -Dm644 ${srcdir}/${pkgname}--${pkgver}-sdk/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + install -Dm644 ${srcdir}/${pkgname}-${pkgver}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } |