mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 04:24:35 +08:00
30 lines
666 B
Bash
30 lines
666 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=plasma-mediacenter
|
|
pkgver=5.7.5
|
|
pkgrel=1
|
|
pkgdesc="A mediacenter user interface based on KDE Plasma components"
|
|
arch=(x86_64)
|
|
url="http://community.kde.org/Plasma/Plasma_Media_Center/"
|
|
license=(GPL3)
|
|
depends=(plasma-workspace baloo taglib)
|
|
makedepends=(extra-cmake-modules python3)
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz")
|
|
sha256sums=('dd0df7dbc3e51ec4e329a6365c25b2b2e3d6e4dd7fd8e0aa916f3f9559a863bf')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|