mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
34 lines
991 B
Bash
34 lines
991 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-playwolf
|
|
pkgver=0.8.1
|
|
pkgrel=2
|
|
pkgdesc="A Kdeplasma plasmoid giving information about songs for amarok 2.0."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde-look.org/content/show.php/show.php?content=93882"
|
|
license=('GPL2')
|
|
groups=()
|
|
depends=('kdelibs>=4.2')
|
|
makedepends=('gcc' 'cmake' 'automoc4')
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
source=(http://playwolf.googlecode.com/files/playwolf-$pkgver.tar.bz2)
|
|
noextract=()
|
|
md5sums=('28ec4f7abfcc367c0dae67f4d423d569')
|
|
build() {
|
|
cd $srcdir/playwolf
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .. || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install || return 1
|
|
}
|