aboutsummaryrefslogtreecommitdiffstats
path: root/community/qt5-qttranslations/APKBUILD
blob: 65cc55fa1d5cd3d7132e9252d10be264888951f3 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=qt5-qttranslations
_pkgname=${pkgname/qt5-//}-everywhere-src
pkgver=5.12.3
_ver=${pkgver/_/-}
_ver=${_ver/beta0/beta}
_ver=${_ver/rc0/rc}
_V=${_ver/rc/RC}
pkgrel=0
pkgdesc="Qt5 - QtTranslations module"
url="http://qt-project.org/"
arch="noarch"
license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions and GFDL"
makedepends="qt5-qttools-dev"

case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/$_pkgname-$_V.tar.xz"

builddir="$srcdir"/$_pkgname-${_V%-*}

build() {
	cd "$builddir"
	qmake-qt5 && make
}

check() {
	cd "$builddir"
	make check
}
package() {
	cd "$builddir"
	make install INSTALL_ROOT="$pkgdir"
}

sha512sums="76e31a3c6a6824666b2f49d7fa0ad6e604f4a8fcb408261cfeb7baa213fc2f54c1382f677c824f47e7a629776637c699fbe215eecfbce85c3ce621c3de9b01ad  qttranslations-everywhere-src-5.12.3.tar.xz"