mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
35 lines
680 B
Bash
35 lines
680 B
Bash
#
|
|
# Akabei Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Lukas Appelhans <boom1992@chakra-project.org>
|
|
|
|
pkgname=('akabeiclient')
|
|
|
|
pkgver=0.1alpha1
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc='The backend library of akabei'
|
|
arch=('i686' 'x86_64')
|
|
url='http://gitorious.org/chakra/akabeiclient'
|
|
license=('LGPL')
|
|
|
|
depends=('qt' 'akabeicore' 'kdepimlibs')
|
|
|
|
source=("https://gitorious.org/chakra/akabeiclient/archive-tarball/alpha1")
|
|
|
|
md5sums=('4ecca8aa2b66bd5a574b0effe1c9ecb6')
|
|
|
|
build() {
|
|
cd ${srcdir}/chakra-akabeiclient
|
|
mkdir -p build/
|
|
cd build/
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/chakra-akabeiclient/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|