mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
36 lines
976 B
Bash
36 lines
976 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.95
|
|
pkgrel=1
|
|
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}.tar.bz2)
|
|
md5sums=('4861bc8626a6e1ab3cc0d5b0df4ce562')
|
|
|
|
build() {
|
|
cd "$srcdir/fancytasks-${pkgver}"
|
|
[[ -d build ]] && rm -fR build
|
|
mkdir build
|
|
cd build
|
|
cmake ../ -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/fancytasks-${pkgver}/build"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|