mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 04:14:40 +08:00
38 lines
919 B
Bash
38 lines
919 B
Bash
#
|
|
# KDEPlasma Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=kdeplasma-applets-daisy
|
|
pkgver=0.0.4.25
|
|
pkgrel=4
|
|
pkgdesc="A simple application launcher for Plasma."
|
|
arch=('i686' 'x86_64')
|
|
url="http://cdlszm.org/"
|
|
screenshot="http://cdlszm.org/media/daisy-round1.jpg"
|
|
license=('GPL')
|
|
depends=('kde-workspace')
|
|
makedepends=('gcc' 'cmake' 'automoc4')
|
|
conflicts=('kde-extragear-plasmoids')
|
|
replaces=('plasma-daisy-plasmoid')
|
|
categories=('accessories')
|
|
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 -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
|
|
}
|
|
|