mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
91 lines
2.1 KiB
Bash
91 lines
2.1 KiB
Bash
# $Id: PKGBUILD 54203 2009-10-07 10:08:26Z andrea $
|
|
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
|
|
|
|
pkgbase=kdeartwork
|
|
pkgname=('kdeartwork-colorschemes'
|
|
'kdeartwork-iconthemes'
|
|
'kdeartwork-weatherwallpapers'
|
|
'kdeartwork-desktopthemes'
|
|
'kdeartwork-emoticons'
|
|
'kdeartwork-kscreensaver'
|
|
'kdeartwork-sounds'
|
|
'kdeartwork-styles'
|
|
'kdeartwork-wallpapers')
|
|
pkgver=4.3.2
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.kde.org'
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
groups=('kde' 'kdeartwork')
|
|
makedepends=('pkgconfig' 'cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace')
|
|
source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2")
|
|
md5sums=('e4e51be6fe0eaf1290604884a64d28a3')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgbase}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed' \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package_kdeartwork-colorschemes() {
|
|
pkgdesc='KDE color schemes'
|
|
cd $srcdir/build/ColorSchemes
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-iconthemes() {
|
|
pkgdesc='KDE icon themes'
|
|
cd $srcdir/build/IconThemes
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-weatherwallpapers() {
|
|
pkgdesc='KDE weather wallpapers'
|
|
cd $srcdir/build/WeatherWallpapers
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-desktopthemes() {
|
|
pkgdesc='KDE desktop themes'
|
|
cd $srcdir/build/desktopthemes
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-emoticons() {
|
|
pkgdesc='KDE emoticons'
|
|
cd $srcdir/build/emoticons
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-kscreensaver() {
|
|
pkgdesc='KDE screensaver'
|
|
depends=('kdebase-workspace' )
|
|
cd $srcdir/build/kscreensaver
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-sounds() {
|
|
pkgdesc='KDE sounds'
|
|
cd $srcdir/build/sounds
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-styles() {
|
|
pkgdesc='KDE styles'
|
|
depends=('kdelibs')
|
|
cd $srcdir/build/styles
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_kdeartwork-wallpapers() {
|
|
pkgdesc='KDE wallpapers'
|
|
cd $srcdir/build/wallpapers
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|