desktop/kaffeine/PKGBUILD
2018-05-02 09:25:07 +01:00

33 lines
760 B
Bash

# Source global configuration
source ../kdeapps.conf
pkgname=kaffeine
pkgver=2.0.15
pkgrel=1
pkgdesc='Media player with support for digital television (DVB-C/S/S2/T and ATSC, decryption with CI/CAM)'
license=('GPL')
arch=('x86_64')
url="https://kaffeine.kde.org"
depends=('kio' 'hicolor-icon-theme' 'libxss' 'vlc')
makedepends=('extra-cmake-modules' 'kidletime' 'kdoctools')
categories=('multimedia')
options=('debug')
install=kaffeine.install
source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz")
sha256sums=('e61573199fe4e04377679a5cf8b32b3aa0bb4201c56371e11820d3a3ae41904d')
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../$pkgname-$pkgver
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}