mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
720 B
Bash
33 lines
720 B
Bash
|
|
# Akabei Packages for Chakra, part of chakra-project.org
|
|
|
|
# Maintainer: Lukas Appelhans <boom1992@chakra-project.org>
|
|
|
|
pkgname=('akabeiclient')
|
|
pkgver=0.1alpha2
|
|
pkgrel=1
|
|
#epoch=1
|
|
pkgdesc='The backend library of akabei'
|
|
arch=('x86_64')
|
|
url='http://gitorious.org/chakra/akabeiclient'
|
|
license=('LGPL')
|
|
|
|
depends=('qt' "akabeicore=${pkgver}" 'gpgme' 'polkit-qt' 'curl')
|
|
|
|
source=("https://gitorious.org/chakra/akabeiclient/archive-tarball/akabeiclient_alpha2")
|
|
md5sums=('cf2d8bb3a3d27fc1b7f045eca3bc6d96')
|
|
|
|
build() {
|
|
cd ${srcdir}/chakra-akabeiclient
|
|
mkdir -p build/
|
|
cd build/
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package_akabeiclient() {
|
|
cd ${srcdir}/chakra-akabeiclient/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|