mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
816 B
Bash
35 lines
816 B
Bash
# Source global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kaffeine
|
|
pkgver=2.0.14
|
|
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=('2c73fd473f0579cffa7e797e3d00c41b09d7fb4dee486bb507877a56bd1d7f3a')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
rm -r $pkgname-$pkgver/po/pt_BR/docs # Doesn't build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|