[arch-commits] Commit in (3 files)
Antonio Rojas
arojas at archlinux.org
Sat Apr 22 20:51:09 UTC 2017
Date: Saturday, April 22, 2017 @ 20:51:08
Author: arojas
Revision: 293990
New Qt module
Added:
qt5-remoteobjects/
qt5-remoteobjects/kde-unstable/
qt5-remoteobjects/kde-unstable/PKGBUILD
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Added: qt5-remoteobjects/kde-unstable/PKGBUILD
===================================================================
--- qt5-remoteobjects/kde-unstable/PKGBUILD (rev 0)
+++ qt5-remoteobjects/kde-unstable/PKGBUILD 2017-04-22 20:51:08 UTC (rev 293990)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 293803 2017-04-21 11:54:59Z arojas $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=qt5-remoteobjects
+_qtver=5.9.0-beta2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt5-base)
+makedepends=()
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz")
+sha256sums=('0ffed23ad0a66d48641624ff7a8c78fce20fcea29f7f6e5a73d8fcc783a5c9aa')
+
+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