Package Details: qfsm 0.54.0-3

Git Clone URL: https://aur.archlinux.org/qfsm.git (read-only, click to copy)
Package Base: qfsm
Description: A graphical tool for designing finite state machines
Upstream URL: http://qfsm.sourceforge.net/index.html
Licenses: GPL3
Submitter: cippaciong
Maintainer: end222
Last Packager: end222
Votes: 0
Popularity: 0.000000
First Submitted: 2015-10-26 10:15 (UTC)
Last Updated: 2018-03-19 21:26 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

ThomasZeGerman commented on 2020-01-03 16:41 (UTC)

so this conflicts with qt5, which is required by a lot of things. How do I fix that?

cippaciong commented on 2018-03-19 16:56 (UTC)

@end222: sure, thanks!

end222 commented on 2018-03-19 16:55 (UTC)

A bit late but I confirm that what @dzamlo said works well. If you want I can maintain it and change the PKGBUILD to get it compiling well again

cippaciong commented on 2016-11-28 19:43 (UTC)

@dzamlo, Thanks for reporting. Since I don't use this package anymore, if you'd like to be the new maintainer I can abandon it.

dzamlo commented on 2016-11-27 18:22 (UTC) (edited on 2016-11-27 18:25 (UTC) by dzamlo)

This package doesn't compile anymore, here is a patch to make it compile. The differences are removing the qtchooser dependencies that is not needed and compiling with `-std=c++98`. --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ arch=('x86_64' 'i686') url="http://qfsm.sourceforge.net/index.html" license=('GPL3') depends=('qt4' 'graphviz') -makedepends=('cmake' 'qtchooser') +makedepends=('cmake') install=qfsm.install source=("http://sourceforge.net/projects/$pkgname/files/$pkgname/${pkgname}-${_pkgver}/${pkgname}-${pkgver}-Source.tar.bz2") sha256sums=('2b53b7e54e42d4c188f62220aaae3d3fb5e8239b8ac8e88f793689cc0a5b8766') @@ -16,7 +16,7 @@ sha256sums=('2b53b7e54e42d4c188f62220aaae3d3fb5e8239b8ac8e88f793689cc0a5b8766') build() { cd "$srcdir/${pkgname}-${pkgver}-Source" sed -i 's/qfsm.png/qfsm/g' desktop/qfsm.desktop - cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_SYSCONFDIR="/etc" + cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_SYSCONFDIR="/etc" -DCMAKE_CXX_STANDARD=98 make }