blob: 5c74879389279bec1cbaa31195dcf0482cb03df9 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=qt5-qttranslations
pkgver=5.5.0
pkgrel=1
pkgdesc="Qt5 - QtTranslations module"
url="http://qt-project.org/"
arch="noarch"
license="LGPLv2 with exceptions or GPLv3 with exceptions and GFDL"
depends=""
depends_dev=""
makedepends="$depends_dev qt5-qttools-dev"
install=""
subpackages=""
_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/qttranslations-opensource-src-$_V.tar.xz"
_builddir="$srcdir"/qttranslations-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-qt5 && make || return 1
}
package() {
cd "$_builddir"
make install INSTALL_ROOT="$pkgdir" || return 1
}
md5sums="423cccbace459623a9a173cede968cbe qttranslations-opensource-src-5.5.0.tar.xz"
sha256sums="5ace1730e101cbfecca56bd775ccb7f8d103ae4ad956da689e01e501c860bf86 qttranslations-opensource-src-5.5.0.tar.xz"
sha512sums="f1286669278d7545a371f29629004ab3e96c64937f6859a9a7d4e4e8ff3e2b96f7362029c7158dee5a8ff3fa80955be455c6be2dca9ab18d30ad8f4098ba705b qttranslations-opensource-src-5.5.0.tar.xz"
|