mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#
|
|
# KDE SC Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
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 || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_origname}-kwin-fx
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
# vim:syntax=sh
|