desktop/plasma-workspace-wallpapers/PKGBUILD

34 lines
803 B
Bash
Raw Normal View History

#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/plasma-workspace-wallpapers
2014-07-11 01:07:52 +08:00
source ../plasma.conf
pkgname=plasma-workspace-wallpapers
pkgver=${PVersion}
pkgrel=1
2014-12-01 14:48:37 +08:00
pkgdesc='Additional wallpapers for the Plasma Workspace'
arch=('x86_64')
2014-12-01 14:48:37 +08:00
url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
2014-07-11 01:07:52 +08:00
license=('LGPL')
makedepends=('extra-cmake-modules')
groups=('plasma')
options=("debug")
2014-10-23 03:29:25 +08:00
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
2014-07-11 01:07:52 +08:00
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTING=OFF
2014-07-11 01:07:52 +08:00
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}