mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:07:16 +08:00
36 lines
988 B
Bash
36 lines
988 B
Bash
#
|
|
# KDEPlasma 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=kdeplasma-applets-fancytasks
|
|
pkgver=1.0.96
|
|
pkgrel=2
|
|
pkgdesc="Plasmoid Binary"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde-look.org/content/show.php/Fancy+Tasks?content=99737"
|
|
license=('GPL')
|
|
depends=('kde-workspace')
|
|
makedepends=('cmake' 'automoc4' 'kde-baseapps')
|
|
source=(http://www.kde-look.org/CONTENT/content-files/99737-fancytasks-${pkgver}-4.8.tar.bz2)
|
|
md5sums=('f3bf7fc8d1dbfb8cfc6d2f1a7bc56c2b')
|
|
|
|
build() {
|
|
cd "$srcdir/fancytasks-${pkgver}-4.8"
|
|
[[ -d build ]] && rm -fR build
|
|
mkdir build
|
|
cd build
|
|
cmake ../ -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/fancytasks-${pkgver}-4.8/build"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|