diff options
Diffstat (limited to 'extra/kdetoys-ktux/PKGBUILD')
-rw-r--r-- | extra/kdetoys-ktux/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/kdetoys-ktux/PKGBUILD b/extra/kdetoys-ktux/PKGBUILD new file mode 100644 index 000000000..115aea1b2 --- /dev/null +++ b/extra/kdetoys-ktux/PKGBUILD @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdetoys-ktux +pkgver=4.11.0 +pkgrel=1 +pkgdesc='A Tux-in-a-spaceship screen saver' +url='https://projects.kde.org/projects/kde/kdetoys/ktux' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdetoys') +depends=('kdebase-workspace') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/ktux-${pkgver}.tar.xz") +sha1sums=('4f3671599c2c73808e8a25f0dbc9e221f524d12c') + +build() { + mkdir build + cd build + cmake ../ktux-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE4_BUILD_TESTS=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR=$pkgdir install +} |