summaryrefslogtreecommitdiffstats
path: root/unmaintained/kdeartwork/APKBUILD
blob: a69fc54ae41ce85ee1f2143f46b91e7ae05c714a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer:
pkgname=kdeartwork
pkgver=4.6.3
pkgrel=0
pkgdesc="artwork for KDE desktop"
url="http://www.kde.org/"
arch="all"
license="GPL LGPL"
depends="xscreensaver"
depends_dev="kdebase-workspace-dev cmake automoc4"
makedepends="$depends_dev"
install=""
subpackages=""
source="http://kde.mirrors.tds.net/pub/kde/stable/$pkgver/src/kdeartwork-$pkgver.tar.bz2"
install_if="kdebase-workspace"

_builddir="$srcdir"/kdeartwork-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
	mkdir -p "$_builddir"/build
}

build() {
	cd "$_builddir"/build
	cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_RPATH=ON "$_builddir" || return 1
	make || return 1
}

package() {
	cd "$_builddir"/build
	make DESTDIR="$pkgdir" install || return 1
}

md5sums="f45a8ed91c578275056c86f7022695ee  kdeartwork-4.6.3.tar.bz2"