diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-02 23:33:17 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-02 23:33:17 -0300 |
commit | c82a20c82eb99dacb3e26c3b6e93d2eca47f0ed4 (patch) | |
tree | 89736b2f6459c2a1b25d618b12ac095d53a59836 /libre/opencolorio | |
parent | e19513e92d38a19ce1d1d11f4e1c488a2a551e72 (diff) |
rename to opencolorio
Diffstat (limited to 'libre/opencolorio')
-rw-r--r-- | libre/opencolorio/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libre/opencolorio/PKGBUILD b/libre/opencolorio/PKGBUILD new file mode 100644 index 000000000..7a3e4fd98 --- /dev/null +++ b/libre/opencolorio/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer (Arch): Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor (Arch): Dumitru Ursu <dima@ceata.org> +# Maintainer: Márcio Silva <coadde@parabola.nu> + +pkgname=opencolorio +pkgver=1.0.9 +pkgrel=2.6 +pkgdesc='A color management framework for visual effects and animation (built for the blender package)' +arch=('i686' 'x86_64' 'mips64el') +url="http://$pkgname.org" +license=('BSD') +depends=('freeglut' 'glew' 'lcms2' 'openimageio' 'python') +makedepends=('cmake') +conflicts=("$pkgname-parabola") +replaces=("$pkgname-parabola") +source=("http://github.com/imageworks/OpenColorIO/tarball/v$pkgver") +sha1sums=('a015cb51b9b0ea0cdb3989fc23e1c18ad69511e0') + +build() { + mv imageworks-OpenColorIO-* $pkgname-$pkgver + cd $pkgname-$pkgver + cmake . -DCMAKE_INSTALL_PREFIX=/usr -DOCIO_BUILD_DOCS=OFF -DOCIO_PYGLUE_SONAME=ON + 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: |