desktop/kwin-fx-bereflected/PKGBUILD

39 lines
1019 B
Bash

# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
# Include global configuration
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kwin-fx-bereflected
_origname=bereflected
pkgver=0.1
pkgrel=1
pkgdesc="Clone of Compiz Reflection effect"
url="http://kde-look.org/content/show.php/BeReflected?content=125893&PHPSESSID=b2df295b0f66443f239a38132b200f88"
arch=('i686' 'x86_64')
license=('GPL')
depends=('kdebase-workspace')
makedepends=('cmake' 'automoc4')
conflicts=()
provides=()
groups=("kde-complete" "kde-uninstall" "kwin-fx")
install=('bereflected.install')
source=("http://kde-look.org/CONTENT/content-files/125893-${_origname}-kwin-fx-${pkgver}.tbz")
md5sums=('f0023149fec0201806853baea6dff7c5')
build() {
cd ${srcdir}/${_origname}-kwin-fx
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .
make
}
package() {
cd ${srcdir}/${_origname}-kwin-fx
make DESTDIR=${pkgdir} install
}
# vim:syntax=sh