mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 10:51:39 +02:00
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=qt5-qtxmlpatterns
|
|
pkgver=5.3.2
|
|
pkgrel=0
|
|
pkgdesc="Qt5 - QtXmlPatterns component"
|
|
url="http://qt-project.org/"
|
|
arch="all"
|
|
license="LGPLv2 with exceptions or GPLv3 with exceptions"
|
|
depends=""
|
|
depends_dev="qt5-qtbase-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
|
|
_ver=${pkgver/_/-}
|
|
_ver=${_ver/beta0/beta}
|
|
_ver=${_ver/rc0/rc}
|
|
_V=${_ver/rc/RC}
|
|
case $pkgver in
|
|
*_beta*|*_rc*) _rel=development_releases;;
|
|
*) _rel=official_releases;;
|
|
esac
|
|
|
|
source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/qtxmlpatterns-opensource-src-$_V.tar.xz"
|
|
|
|
_builddir="$srcdir"/qtxmlpatterns-opensource-src-$_V
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
qmake && make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make install INSTALL_ROOT="$pkgdir" || return 1
|
|
rm "$pkgdir"/usr/lib/*.la || return 1
|
|
}
|
|
|
|
md5sums="857e8040b2bf45c114a7d75ec6ef94ee qtxmlpatterns-opensource-src-5.3.2.tar.xz"
|
|
sha256sums="acab0307039e117475caf2c95e425ead09ab5ee08ce15205fb3c0af7d7ec1abb qtxmlpatterns-opensource-src-5.3.2.tar.xz"
|
|
sha512sums="830cfd74ae4244253e74e36c07f548f6ed30cfd0f04f7ad3f77501f19ea61b9d3b00d04ddc33de878df845f6e7476c4da2e4d1522659d38823a637af72d90a7d qtxmlpatterns-opensource-src-5.3.2.tar.xz"
|