desktop/KDStateMachineEditor/PKGBUILD
AlmAck 0af05b343a kde applications 16.12.0
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
2016-12-20 21:48:24 +00:00

30 lines
768 B
Bash

pkgname=kdstatemachineeditor
pkgver=1.1.0
pkgrel=1
pkgdesc="framework for creating Qt State Machine metacode using graphical user interfaces"
arch=('x86_64')
url="http://kdab.github.io/KDStateMachineEditor"
license=('LGPL')
depends=('qt5-base>=5.6' 'qt5-graphicaleffects' 'graphviz')
makedepends=("cmake" 'doxygen')
source=("https://github.com/KDAB/KDStateMachineEditor/releases/download/v${pkgver}/kdstatemachineeditor-${pkgver}.tar.gz")
sha256sums=('0dfd8ac48e3357e81117ceffe13d0e4fb8c1e42498ddbfb86dad1a5461358bcb')
prepare()
{
cd "$srcdir/${pkgname}-$pkgver"
mkdir -p build
}
build() {
cd "$srcdir/${pkgname}-$pkgver/build"
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package()
{
cd "$srcdir/$pkgname-$pkgver/build"
make DESTDIR=${pkgdir} install
}