2016-10-07 09:45:37 +08:00
|
|
|
# Contribution from Arch:
|
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
|
|
|
|
pkgname=kexi
|
2017-03-11 21:23:38 +08:00
|
|
|
pkgver=3.0.1
|
2016-10-07 09:45:37 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A visual database applications creator"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="http://www.kexi-project.org/"
|
|
|
|
license=(GPL2)
|
|
|
|
depends=(kdb kreport ktexteditor qt5-webkit)
|
|
|
|
makedepends=(extra-cmake-modules python qt5-tools breeze-icons marble libmariadbclient postgresql)
|
|
|
|
conflicts=(calligra-kexi)
|
|
|
|
replaces=(calligra-kexi)
|
|
|
|
source=("http://download.kde.org/stable/$pkgname/src/$pkgname-$pkgver.tar.xz")
|
2017-03-11 21:23:38 +08:00
|
|
|
sha1sums=('f2eae11c42a641da1151f2a0d1a315b50db7be08')
|
2016-10-07 09:45:37 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|