aboutsummaryrefslogtreecommitdiffstats
path: root/main/qt5-qtquick1/APKBUILD
blob: cb025d7cdabd380349fe264f689bf5c7fcf4fb2c (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=qt5-qtquick1
pkgver=5.5.0
_ver=${pkgver/_/-}
_ver=${_ver/beta0/beta}
_ver=${_ver/rc0/rc}
_V=${_ver/rc/RC}
pkgrel=1
pkgdesc="A declarative language for describing user interfaces in Qt5"
url="http://qt-project.org/"
arch="all"
license="LGPLv2 with exceptions or GPLv3 with exceptions"
depends=""
depends_dev="qt5-qtbase-dev qt5-qtscript-dev mesa-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-dev"
case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/qtquick1-opensource-src-$_V.tar.xz"

_qt5_prefix=/usr/lib/qt5
_builddir="$srcdir"/qtquick1-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
}

package() {
	cd "$_builddir"
	make install INSTALL_ROOT="$pkgdir" || return 1
	mkdir -p "$pkgdir"/usr/bin/
	for i in "$pkgdir"/$_qt5_prefix/bin/*; do
		ln -s ../lib/qt5/bin/${i##*/} "$pkgdir"/usr/bin/${i##*/}-qt5 || return 1
	done
}

md5sums="8cd53fd1100e7f7cdf5b14f7c227e7b9  qtquick1-opensource-src-5.5.0.tar.xz"
sha256sums="db563b33e1670bc8a254d53c0a8e29ba501b903fafcd3b7e3d2ab845db0dfa2c  qtquick1-opensource-src-5.5.0.tar.xz"
sha512sums="ec4e1285fdf3a9b1291954fb90187c0014d8fe5900028e1e1c0fcdfecec3f0d9e2a94b264c7b5c4ac28380a78d217d935a4a495495d0ce47f6119a43711bc66e  qtquick1-opensource-src-5.5.0.tar.xz"