milis/talimatname/genel/f/ffmpegthumbnailer/talimat

25 lines
600 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: Dosya yöneticileri tarafından kullanılabilen hafif video küçük resim görüntüleyici.
2017-03-23 20:38:29 +01:00
# URL : https://github.com/dirkvdb/ffmpegthumbnailer
2017-10-27 20:46:27 +02:00
# Paketçi: yasarciv67@gmail.com
# Gerekler: cmake libjpeg-turbo libpng ffmpeg gvfs
2017-03-23 20:38:29 +01:00
name=ffmpegthumbnailer
version=2.2.0
2017-09-11 23:07:31 +02:00
release=2
2017-03-23 20:38:29 +01:00
source=(https://github.com/dirkvdb/$name/archive/$version.tar.gz)
2017-10-27 23:59:41 +02:00
derle() {
2017-03-23 21:29:31 +01:00
cd $name-$version
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DENABLE_GIO=ON \
-DENABLE_THUMBNAILER=ON
2017-03-23 20:38:29 +01:00
2017-03-23 21:29:31 +01:00
make
make DESTDIR=$PKG install
2017-03-23 20:38:29 +01:00
}