yeni-talimat

This commit is contained in:
milisbir 2017-05-03 00:36:06 +03:00
parent cc28dbc045
commit 8c5d6d9b9f
5 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,3 @@
update-desktop-database -q
update-mime-database usr/share/mime &> /dev/null
xdg-icon-resource forceupdate --theme hicolor &> /dev/null

View File

@ -0,0 +1,35 @@
# Description: Tamamen entegre bir 3B grafik oluşturma paketi
# URL: http://www.blender.org
# Packager: yasarciv67@gmail.com
# Depends on: desktop-file-utils cmake python xorg-libx11 openjpeg libpng freetype boost glew llvm opensubdiv opencolorio openimageio hicolor-icon-theme jack libsndfile openal openexr fftw ffmpeg
name=blender
version=2.78a
release=1
source=(http://download.blender.org/source/blender-$version.tar.gz)
build() {
cd $name-$version
mkdir build
cd build
cmake -C../build_files/cmake/config/blender_full.cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_INSTALL_PORTABLE=OFF \
-DWITH_PYTHON_INSTALL=OFF \
-DWITH_SYSTEM_OPENJPEG=ON \
-DWITH_OPENSUBDIV=ON \
-DWITH_LLVM=ON \
-DWITH_SYSTEM_OPENJPEG=ON \
-DWITH_GL_PROFILE_CORE=OFF \
-DWITH_GL_PROFILE_ES20=OFF \
-DPYTHON_VERSION=3.5 \
-DPYTHON_LIBPATH=/usr/lib \
-DPYTHON_LIBRARY=python3.5m \
-DPYTHON_INCLUDE_DIRS=/usr/include/python3.5m
make
make DESTDIR=$PKG install
python3 -m compileall $PKG/usr/share/blender
python3 -O -m compileall $PKG/usr/share/blender
}

View File

@ -0,0 +1,22 @@
# Description: Görsel efektler ve animasyon için bir renk yönetimi çerçevesi
# URL: http://opencolorio.org
# Packager: yasarciv67@gmail.com
# Depends on: python cmake
name=opencolorio
version=1.0.9
release=1
PKGMK_KEEP_SOURCES="no"
source=(https://github.com/imageworks/OpenColorIO/archive/v$version.tar.gz)
build() {
cd OpenColorIO-$version
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
make DESTDIR="$PKG" install
}

View File

@ -0,0 +1,27 @@
# Description: Sınıflar, yardımcı programlar ve uygulamalar da dahil olmak üzere resim okumak ve yazmak için
# URL: http://www.openimageio.org/
# Packager: yasarciv67@gmail.com
# Depends on: cmake qt4 python boost xorg-mesa openexr jasper glew libtiff opencolorio
name=openimageio
version=1.6.14
release=1
PKGMK_KEEP_SOURCES="no"
source=(https://github.com/OpenImageIO/oiio/archive/release.zip)
build() {
cd oiio-release
mkdir build
cd build
cmake .. \
-DUSE_OPENSSL=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
-DOIIO_BUILD_TESTS=ON \
-DOIIO_BUILD_TOOLS=ON
make DESTDIR=$PKG install
}

View File

@ -0,0 +1,24 @@
# Description: Açık Kaynaklı bir alt bölüm yüzey kütüphanesi
# URL: http://graphics.pixar.com/opensubdiv
# Packager: yasarciv67@gmail.com
# Depends on: python python-docutils python-pygments cmake glew xorg-libxcursor xorg-app xorg-libxinerama
PKGMK_KEEP_SOURCES="no"
name=opensubdiv
version=3.0.2
release=1
source=(https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${version//./_}.tar.gz)
build() {
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
}