desktop/kamerka/PKGBUILD
2015-10-01 11:45:31 +00:00

25 lines
710 B
Bash

pkgname=kamerka
pkgver=0.12
pkgdesc="Take photos using your webcam and shiny animated QML interface."
pkgrel=1
arch=('x86_64')
url="http://dos1.github.io/kamerka/"
screenshot="http://kde-apps.org/CONTENT/content-pre1/142415-1.jpg"
license=(GPL)
depends=('kdelibs' 'qt' 'v4l-utils' 'qimageblitz')
makedepends=('cmake' 'automoc4')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dos1/${pkgname}/archive/${pkgver}.tar.gz)
sha256sums=('8390a98476b34b658a0b5d4a26875ec3a76aeece64782b2dde2e32175d8a88d6')
build(){
cd ${srcdir}/${pkgname}-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo
make
}
package(){
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}