updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / plasma-nextwallpaper-plasmoid-git / PKGBUILD
blobff1bf453fbed2c031264d536578717f3a9b9a606
1 # Contributor: Ajsin Roman <aysin.roman@gmail.com>
3 pkgname=plasma-nextwallpaper-plasmoid-git
4 pkgver=20090927
5 pkgrel=1
6 pkgdesc="Simple applet that changes the current wallpaper (when in slideshow mode) on command."
7 arch=('i686' 'x86_64')
8 url="http://kde-look.org/content/show.php/Next+wallpaper?content=94251"
9 license=('GPL')
10 groups=()
11 depends=('kdebase-workspace')
12 makedepends=('gcc' 'cmake' 'automoc4')
13 conflicts=('plasma-nextwallpaper-plasmoid')
14 install=
15 source=()
16 md5sums=()
18 _gitroot="git://github.com/dpalacio/plasma-nextwallpaper.git"
19 _gitname="plasma-nextwallpaper"
21 build() {
22   cd ${srcdir}
23   msg "Connecting to GIT server...."
25   if [ -d ${srcdir}/$_gitname ] ; then
26       cd $_gitname && git pull origin || return 1
27       msg "The local files are updated."
28   else
29       git clone $_gitroot $_gitname
30   fi
32   msg "GIT checkout done or server timeout"
33   msg "Starting make..."
35   cd ${srcdir}
36   [ -d $_gitname-build ] && rm -rf $_gitname-build
37   git clone $_gitname $_gitname-build
38   cd ${srcdir}/$_gitname-build
39   
40   mkdir build && cd build
41   cmake -DCMAKE_INSTALL_PREFIX=/usr .. || return 1
42   make || return 1
43   make DESTDIR="$pkgdir/" install
46 # vim:set ts=2 sw=2 et: