mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
31 lines
719 B
Bash
31 lines
719 B
Bash
pkgname=libkolab
|
|
pkgver=1.0.2
|
|
pkgrel=3
|
|
pkgdesc='Advanced Kolab Object Handling Library'
|
|
url='http://git.kolab.org/libkolab/'
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=(libkolabxml akonadi-notes akonadi kcontacts kcalutils)
|
|
makedepends=(extra-cmake-modules kdoctools boost python3 swig kdesignerplugin)
|
|
source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
|
|
md5sums=('312f35920989fd115386ee256fe78ba2'
|
|
'9c829ce9983b3c8cbab9ce833c982924')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_TESTS=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|