mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
630 B
Bash
33 lines
630 B
Bash
|
|
pkgname=kdiagram
|
|
pkgver=2.6.1
|
|
pkgrel=1
|
|
pkgdesc="Powerful libraries for creating business diagrams"
|
|
arch=(x86_64)
|
|
url="http://www.kde.org/"
|
|
license=(GPL2)
|
|
depends=(qt5-svg)
|
|
makedepends=(extra-cmake-modules qt5-tools)
|
|
source=("http://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz")
|
|
sha1sums=('0e5372f8a14f127a867907e590f2d137f187398c')
|
|
|
|
|
|
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
|
|
}
|