desktop/kamoso/PKGBUILD
2017-02-21 09:01:28 +00:00

30 lines
851 B
Bash

pkgname=kamoso
pkgver=3.2.3
pkgrel=1
pkgdesc="Kamoso is an application to take pictures and videos out of your webcam."
url="https://userbase.kde.org/Kamoso"
arch=('x86_64')
license=('GPL')
depends=('qt5-gstreamer' 'purpose' 'gst-plugins-bad' 'qt5-quickcontrols')
makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'python3')
conflicts=('kamoso-git')
categories=('multimedia')
screenshot=('http://kde-apps.org/CONTENT/content-pre1/111750-1.png')
source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/src/$pkgname-$pkgver.tar.xz")
md5sums=('5d92d3a3219d53e9b3e8054b2327e06a')
build() {
mkdir -p build && cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DBUILD_TESTING=OFF
make
}
package() {
cd build
make DESTDIR=$pkgdir install
}