Date: Saturday, May 28, 2016 @ 19:41:02 Author: arojas Revision: 268719
New Qt module Added: qt5-scxml/ qt5-scxml/kde-unstable/ qt5-scxml/kde-unstable/PKGBUILD ----------+ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) Added: qt5-scxml/kde-unstable/PKGBUILD =================================================================== --- qt5-scxml/kde-unstable/PKGBUILD (rev 0) +++ qt5-scxml/kde-unstable/PKGBUILD 2016-05-28 17:41:02 UTC (rev 268719) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> +# Maintainer: Antonio Rojas <[email protected]> + +pkgname=qt5-scxml +_qtver=5.7.0-rc +pkgver=${_qtver/-/} +pkgrel=1 +arch=('i686' 'x86_64') +url='http://qt-project.org/' +license=('GPL3' 'LGPL' 'FDL' 'custom') +pkgdesc='Static and runtime integration of SCXML models into Qt code' +depends=('qt5-declarative') +makedepends=() +conflicts=('qt') +groups=('qt' 'qt5') +_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}" +source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz") +md5sums=('fa4d8e98b8a155df55aa53102236c7c5') + +prepare() { + mkdir -p build +} + +build() { + cd build + + qmake ../${_pkgfqn} + make +} + +package() { + cd build + make INSTALL_ROOT="$pkgdir" install + + # Drop QMAKE_PRL_BUILD_DIR because reference the build dir + find "$pkgdir/usr/lib" -type f -name '*.prl' \ + -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \; + + install -d "$pkgdir"/usr/share/licenses + ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname} +} Property changes on: qt5-scxml/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
