mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
added community/opencolorio
This commit is contained in:
parent
908b209eff
commit
48b8ed47da
1 changed files with 37 additions and 0 deletions
37
community/opencolorio/PKGBUILD
Normal file
37
community/opencolorio/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
||||
# Contributor: Dumitru Ursu <dima@ceata.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - turn off using sse, x86 only
|
||||
|
||||
pkgname=opencolorio
|
||||
pkgver=1.0.8
|
||||
pkgrel=1
|
||||
pkgdesc="A color management framework for visual effects and animation"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://opencolorio.org"
|
||||
license=('BSD')
|
||||
depends=('python')
|
||||
makedepends=('cmake')
|
||||
source=(http://github.com/imageworks/OpenColorIO/tarball/v$pkgver)
|
||||
sha1sums=('9b9bac9ed85c84f53775686eb72f3d612b148fef')
|
||||
|
||||
build()
|
||||
{
|
||||
mv imageworks-OpenColorIO-* $pkgname-$pkgver
|
||||
cd $pkgname-$pkgver
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DOCIO_USE_SSE=off .
|
||||
make
|
||||
}
|
||||
|
||||
package()
|
||||
{
|
||||
cd "$pkgname-$pkgver"
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue