mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32: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
35 lines
842 B
Bash
35 lines
842 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=kdb
|
|
pkgver=3.0.0
|
|
pkgrel=1
|
|
pkgdesc="A database connectivity and creation framework for various database vendors"
|
|
arch=(i686 x86_64)
|
|
url="http://www.kexi-project.org/"
|
|
license=(GPL2)
|
|
depends=(kcoreaddons)
|
|
makedepends=(extra-cmake-modules python2 libmariadbclient postgresql ki18n)
|
|
optdepends=('mariadb: MySQL plugin' 'postgresql: PostgreSQL plugin')
|
|
source=("http://download.kde.org/stable/$pkgname/src/$pkgname-$pkgver.tar.xz")
|
|
sha1sums=('90265f8436fc19136a9ed709fae4e6413f0cfa3b')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_TESTING=OFF \
|
|
-DKDE_INSTALL_LIBDIR=lib
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|