mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
730 B
Bash
33 lines
730 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# contributor Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
|
|
pkgname=opencolorio
|
|
pkgver=1.0.9
|
|
pkgrel=1
|
|
pkgdesc="A color management framework for visual effects and animation"
|
|
arch=('x86_64')
|
|
url="http://opencolorio.org"
|
|
license=('BSD')
|
|
depends=('python3')
|
|
makedepends=('cmake')
|
|
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 .
|
|
make
|
|
}
|
|
|
|
package()
|
|
{
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|