mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
#
|
|
# Apps 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-daisy
|
|
pkgver=0.0.4.25
|
|
pkgrel=4
|
|
pkgdesc="A simple application launcher for Plasma."
|
|
arch=('i686' 'x86_64')
|
|
url="http://lechio.freehostia.com/daisy.html"
|
|
license=('GPL')
|
|
depends=('kde-workspace')
|
|
makedepends=('gcc' 'cmake' 'automoc4')
|
|
conflicts=('kde-extragear-plasmoids')
|
|
replaces=('plasma-daisy-plasmoid')
|
|
install=daisy.install
|
|
source=("http://cdlszm.org/downloads/plasma-applet-daisy-$pkgver.tar.gz"
|
|
'patch.diff')
|
|
md5sums=('269fd526453a16066cb704352505f7e9'
|
|
'0a36cfe275cb2c981c26e8e467d0fd57')
|
|
|
|
build() {
|
|
cd $srcdir/plasma-applet-daisy-${pkgver}
|
|
#Patch to make daisy work with KDE>=4.8
|
|
patch -Np1 -i "${srcdir}/patch.diff"
|
|
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/plasma-applet-daisy-${pkgver}/build
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|