desktop/kffmpegthumbnailer/PKGBUILD
2014-02-26 05:19:18 +00:00

31 lines
819 B
Bash

# Maintainer: abveritas[at]chakra-project[dot]org>
pkgname=kffmpegthumbnailer
pkgver=1.1.0
pkgrel=6
pkgdesc="kffmpegthumbnailer is a video thumbnailer for kde based on ffmpegthumbnailer"
arch=('x86_64')
url="http://code.google.com/p/ffmpegthumbnailer"
license=('GPL2')
groups=('multimedia')
depends=('kdebase-workspace' 'ffmpeg' 'ffmpegthumbnailer>=2.0.0')
makedepends=('cmake' 'automoc4')
categories=('accessories')
source=("http://ffmpegthumbnailer.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
md5sums=('fa897450ee691b6d225d8f79a6cfd409')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=release ..
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}/build
make DESTDIR=$pkgdir install
}