summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 865f9b03f877f9a2b27188f239ebe79e0918b4ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer:  Johan Helsing <johanhelsing@gmail.com>
# Contributor: Swift Geek
# Contributor: Jerome Leclanche <jerome@leclan.ch>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
# Contributor: Mateusz Paluszkiewicz <aifam96 at gmail dot com> # Other hacks for repo's target, qt5-wayland-dev-git package

_pkgname=qt5-wayland
pkgname=$_pkgname-dev-backport-git
pkgver=5.11.0.fe1f4b55
pkgrel=1
pkgdesc="Wayland support for Qt clients and APIs for building compositors"
arch=("i686" "x86_64")
url="http://github.com/johanhelsing/qtwayland-backports"
license=("GPL3" "LGPL")
depends=("qt5-declarative" "libxcomposite" "wayland")
makedepends=("git")
provides=("$_pkgname")
conflicts=("$_pkgname")
sha256sums=('SKIP')

# Definition with userside version of Qt5
_qt5_userversion=`pkg-config --modversion Qt5Core`
_branch=dev-for-$(echo ${_qt5_userversion} | cut -d. -f1,2)

source=("$_pkgname::git://github.com/johanhelsing/qtwayland-backports.git#branch=${_branch}")

pkgver() {
  cd "$srcdir/$_pkgname"
  echo "${_qt5_userversion}.$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$srcdir/$_pkgname"
  # Replace Qt version to user version (Qt)
  sed -i "3s/.*/MODULE_VERSION = ${_qt5_userversion}/" ./.qmake.conf
  if [ -d ./build ]; then
    rm -rf --one-file-system ./build
  fi
}

build() {
  cd "$srcdir/$_pkgname"
  mkdir build
  cd build
  export QT_SELECT=5
  qmake CONFIG+=wayland-compositor ..
  make
}

package() {
  cd "${srcdir}/${_pkgname}"
  cd build
  make INSTALL_ROOT="${pkgdir}" install
}