blob: 08735482c0cb1a75fa8393d6988e71b70d0e29f9 (
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
|
# Maintainer: Jerome Leclanche <jerome@leclan.ch>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
_pkgname=qt5-xmlpatterns
pkgname=$_pkgname-git
pkgver=v5.5.0.beta1.2.g25ad8b7
pkgrel=1
pkgdesc="A cross-platform application and UI framework (QtXmlPatterns)"
arch=("i686" "x86_64")
url="https://qt-project.org/"
license=("GPL3" "LGPL")
depends=("qt5-base-git")
makedepends=("git" "python")
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git://code.qt.io/qt/qtxmlpatterns.git#branch=5.5")
sha256sums=("SKIP")
pkgver() {
cd "$srcdir/$_pkgname"
git describe --always | sed "s/-/./g"
}
prepare() {
cd "$srcdir/$_pkgname"
mkdir -p build
cd build
qmake ..
make
}
package() {
cd "$srcdir/$_pkgname"
cd build
make INSTALL_ROOT="$pkgdir" install
}
|