mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:42:14 +08:00
40 lines
777 B
Bash
40 lines
777 B
Bash
#
|
|
# Akabei Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Lukas Appelhans
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=('akabei')
|
|
|
|
pkgver=0.1alpha1
|
|
pkgrel=4
|
|
epoch=1
|
|
pkgdesc='The package manager of The Chakra Project'
|
|
arch=('i686' 'x86_64')
|
|
url='http://gitorious.org/chakra/akabei'
|
|
license=('LGPL')
|
|
|
|
depends=('qt' 'akabeicore' 'akabeiclient' 'kdelibs' 'python-pysqlite')
|
|
makedepends=('automoc4')
|
|
|
|
source=("https://gitorious.org/chakra/akabei/archive-tarball/akabei-alpha1")
|
|
|
|
md5sums=('0a20248451b7e53dc3fb5e5a48daefdf')
|
|
|
|
install=akabei.install
|
|
|
|
build() {
|
|
cd ${srcdir}/chakra-akabei
|
|
mkdir -p build/
|
|
cd build/
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/chakra-akabei/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|