24 lines
590 B
Plaintext
24 lines
590 B
Plaintext
|
# Tanım: Açık Kaynaklı bir alt bölüm yüzey kütüphanesi
|
|||
|
# URL: http://graphics.pixar.com/opensubdiv
|
|||
|
# Paketçi: yasarciv67@gmail.com
|
|||
|
# Gerekler: python python-docutils pygments cmake glew xorg-libxcursor xorg-app xorg-libxinerama
|
|||
|
# Grup: kütüphane
|
|||
|
|
|||
|
isim=opensubdiv
|
|||
|
surum=3.0.2
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${version//./_}.tar.gz)
|
|||
|
|
|||
|
derle() {
|
|||
|
cd OpenSubdiv-${version//./_}
|
|||
|
rm -rf build
|
|||
|
mkdir build
|
|||
|
cd build
|
|||
|
cmake .. \
|
|||
|
-DCMAKE_BUILD_TYPE=Release \
|
|||
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|||
|
make DESTDIR=$PKG/ install
|
|||
|
rm -rf $PKG/usr/bin
|
|||
|
}
|