core/plasma-mediacenter/PKGBUILD

30 lines
666 B
Bash
Raw Normal View History

2015-08-17 01:15:23 +08:00
source ../plasma.conf
pkgname=plasma-mediacenter
pkgver=5.7.5
2015-08-17 01:15:23 +08:00
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)
2016-06-23 05:38:41 +08:00
depends=(plasma-workspace baloo taglib)
2015-08-17 01:15:23 +08:00
makedepends=(extra-cmake-modules python3)
groups=('plasma')
options=("debug")
source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz")
sha256sums=('dd0df7dbc3e51ec4e329a6365c25b2b2e3d6e4dd7fd8e0aa916f3f9559a863bf')
2015-08-17 01:15:23 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}