Package Base Details: qt-installer-framework

Git Clone URL: https://aur.archlinux.org/qt-installer-framework.git (read-only, click to copy)
Submitter: Schala
Maintainer: muflone (Skycoder42)
Last Packager: muflone
Votes: 83
Popularity: 0.196476
First Submitted: 2014-07-10 20:06 (UTC)
Last Updated: 2024-03-10 03:15 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

Skycoder42 commented on 2018-06-02 22:19 (UTC)

@Muflone: Yes, I surely am. You can add me as comaintainer if you want to

muflone commented on 2018-06-02 19:01 (UTC)

package updated

@Skycoder42 I'm leaving the orphan request open. Are you interested in maintain or comaintain this package?

serialdormeur commented on 2018-05-26 15:10 (UTC) (edited on 2018-05-26 15:12 (UTC) by serialdormeur)

Instead of skipping sha256sum check, you can add the sha256sum

14    sha256sums=('f65059141278e0a1224a5b821ae8affe59ee4bb4b50abdc4e04f93fd69a02617')
   14 sha256sums=('07df3fb3ed65c25263523251d3e62a80dec8cf176111a3174204196910425861')

OneDeltaTenTango commented on 2018-05-25 06:05 (UTC) (edited on 2018-05-25 06:05 (UTC) by OneDeltaTenTango)

3.0.4 Seems to have fixed the "QT_VERSION" error. This is what I changed in the PKGBUILD to successfully update.

 6    pkgver=3.0.2
    6 pkgver=3.0.4
13    source=("https://download.qt.io/official_releases/${pkgbase}/${pkgver}/${pkgbase}-opensource-src-${pkgver}.tar.gz")
14    sha256sums=('f65059141278e0a1224a5b821ae8affe59ee4bb4b50abdc4e04f93fd69a02617')
   13 source=("https://download.qt.io/official_releases/${pkgbase}/${pkgver}/${pkgbase}-opensource-src-${pkgver}.gz")
   14 sha256sums=('SKIP')

Skycoder42 commented on 2018-02-25 11:18 (UTC)

Currently the build fails with:

SRCDIR=/tmp/pkg-build/qt-installer-framework/src/doc OUTDIR=/tmp/pkg-build/qt-installer-framework/src/doc/html IFW_VERSION=3.0.2 IFW_VERSION_TAG=302 QT_INSTALL_DOCS=/usr/share/doc/qt /usr/bin/qdoc /tmp/pkg-build/qt-installer-framework/src/doc/installerfw.qdocconf
In file included from /tmp/pkg-build/qt-installer-framework/src/doc/config/ifw.qdocconf:1,
                      /tmp/pkg-build/qt-installer-framework/src/doc/installerfw.qdocconf:2:
/usr/share/doc/qt/global/macros.qdocconf:21: error: Environment variable 'QT_VERSION' undefined
Environment variable 'QT_VERSION' undefined

JoxX commented on 2017-12-29 14:27 (UTC)

Please update to 3.0.2, thx in advance.

muflone commented on 2017-10-15 21:25 (UTC)

Package adopted and updated. Please note that since version 2.0.3-2 the tests are not built along with the library. Also the documentation and examples files are moved in the separated package qt-installer-framework-docs

ahjolinna commented on 2017-10-15 13:03 (UTC)

@duttondj: it would be nice if you could update this pkgs or at least bother to disown it so someone else could do it...sigh

jtmb commented on 2017-09-20 04:33 (UTC)

Thank you, @doviethoa, your proposed PKGBUILD worked for me.

doviethoa commented on 2017-08-31 10:45 (UTC) (edited on 2017-08-31 10:47 (UTC) by doviethoa)

Suggest PKGBUILD for version 2.0.5-1: # Maintainer: Danny Dutton <duttondj@vt.edu> pkgname="qt-installer-framework" pkgver=2.0.5 pkgrel=1 _pkgver=2.0.5-1 _qtver=5.4.2 pkgdesc="The Qt Installer Framework used for the Qt SDK installer." arch=('i686' 'x86_64') url='http://qt-project.org/wiki/Qt-Installer-Framework' license=('FDL' 'LGPL') makedepends=("qt5-base>=${_qtver}" "qt5-tools>=${_qtver}" "qt5-declarative>=${_qtver}") groups=('qt' 'qt5') _pkgfqn="${pkgname}-opensource-${_pkgver}-src" source=("https://download.qt.io/official_releases/${pkgname}/${_pkgver}/${_pkgfqn}.tar.gz") md5sums=('12d646e9016115895365c7db4d653d0e') build() { cd "${srcdir}" qmake-qt5 ./installerfw.pro make -j4 make docs -j4 cd "${srcdir}/tests" qmake-qt5 ./tests.pro make -j4 } package() { install -d ${pkgdir}/usr/{bin,lib,share/{${pkgname},doc/{qt,${pkgname}},licenses/${pkgname}}} cd "${srcdir}" install -m644 LICENSE.FDL "${pkgdir}/usr/share/licenses/${pkgname}/" install -m644 LICENSE.GPL3-EXCEPT "${pkgdir}/usr/share/licenses/${pkgname}/" cp -a ./bin/* "${pkgdir}/usr/bin/" cp -a ./lib/* "${pkgdir}/usr/lib/" cp -a "./doc/html" "${pkgdir}/usr/share/doc/${pkgname}/" cp "./doc/ifw.qch" "${pkgdir}/usr/share/doc/qt/" cp -a "./tests" "${pkgdir}/usr/share/${pkgname}/" cp -a "./examples" "${pkgdir}/usr/share/${pkgname}/" }