mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 09:57:15 +08:00
36 lines
828 B
Bash
36 lines
828 B
Bash
|
# Contribution from Arch:
|
||
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||
|
|
||
|
pkgname=kexi
|
||
|
pkgver=3.0.0
|
||
|
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")
|
||
|
sha1sums=('f7e7919f0a13707cdf2992da9c095ffa14cd510d')
|
||
|
|
||
|
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
|
||
|
}
|