diff options
Diffstat (limited to 'repo/vym')
-rw-r--r-- | repo/vym/vym.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/vym/vym.xibuild b/repo/vym/vym.xibuild new file mode 100644 index 0000000..aee3564 --- /dev/null +++ b/repo/vym/vym.xibuild @@ -0,0 +1,19 @@ +#!/bin/sh + +NAME="vym" +DESC="View Your Mind (VYM) is a cross-platform concept mapping software" + +MAKEDEPS=" qtchooser qt5-qtscript qt5-qtsvg" + +PKG_VER=2.8.8 +SOURCE="https://sourceforge.net/projects/vym/files/$PKG_VER/vym-$PKG_VER.tar.bz2/download" + +build() { + qmake PREFIX=/usr/share +} + +package() { + # Install files + make INSTALL_ROOT=$PKG_DEST install +} + |