[arch-commits] Commit in (3 files)
Antonio Rojas
arojas at archlinux.org
Tue Oct 10 16:12:21 UTC 2017
Date: Tuesday, October 10, 2017 @ 16:12:21
Author: arojas
Revision: 307392
New Qt module
Added:
qt5-webglplugin/
qt5-webglplugin/kde-unstable/
qt5-webglplugin/kde-unstable/PKGBUILD
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Added: qt5-webglplugin/kde-unstable/PKGBUILD
===================================================================
--- qt5-webglplugin/kde-unstable/PKGBUILD (rev 0)
+++ qt5-webglplugin/kde-unstable/PKGBUILD 2017-10-10 16:12:21 UTC (rev 307392)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=qt5-webglplugin
+_qtver=5.10.0-beta
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='QPA plugin for running an application via a browser using streamed WebGL commands'
+depends=(qt5-websockets)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz")
+sha256sums=('00e8c6cdea3d65d3e2a81711bb9771432739125432935e6632e0bb06e91f913e')
+
+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}
+}
More information about the arch-commits
mailing list