mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
34 lines
854 B
Bash
34 lines
854 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=kgraphviewer
|
|
pkgver=2.1.1
|
|
pkgrel=3
|
|
pkgdesc="A Graphviz dot graph file viewer for KDE"
|
|
arch=('i686' 'x86_64')
|
|
url='http://opendesktop.org/content/show.php?content=23999'
|
|
license=('GPL' 'FDL')
|
|
depends=('kde-runtime' 'kdepimlibs' 'graphviz')
|
|
makedepends=('cmake' 'automoc4' 'boost' 'docbook-xsl')
|
|
categories=('graphics')
|
|
install=${pkgname}.install
|
|
source=("https://api.opensuse.org/public/source/home:milianw:kdeapps/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('6cc548221d8a741d13929993615c00f3')
|
|
|
|
build(){
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|