desktop/kwin-fx-bereflected/PKGBUILD
AlmAck 0af05b343a kde applications 16.12.0
renamed checksums to kdeapps.sums
added for all packages the pgp signature
for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
2016-12-20 21:48:24 +00:00

37 lines
1017 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