mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-09 14:32:02 +02:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=qt5-qtscript
|
|
pkgver=5.8.0
|
|
_ver=${pkgver/_/-}
|
|
_ver=${_ver/beta0/beta}
|
|
_ver=${_ver/rc0/rc}
|
|
_V=${_ver/rc/RC}
|
|
pkgrel=0
|
|
pkgdesc="Qt5 - QtScript component"
|
|
url="http://qt-project.org/"
|
|
arch="all !armhf"
|
|
license="LGPLv2 with exceptions or GPLv3 with exceptions"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev qt5-qtbase-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/qtscript-opensource-src-$_V.tar.xz
|
|
qtscript-opensource-src-5.5.0-s390.patch"
|
|
|
|
builddir="$srcdir"/qtscript-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_ROOT="$pkgdir" install || return 1
|
|
}
|
|
|
|
sha512sums="4eb56c83e8a1826e1a2a36096738a55c702c775a040f09ff2d351527d6cd02a21d48e0f45022691c0e5166aa9881fe70f5596df5eac78c23143ccb829ba54b06 qtscript-opensource-src-5.8.0.tar.xz
|
|
9253275dc268c4b8900dcefb66e6280076dc948bdf0765e0ba3e7c0ec690efaa3c61c5403560a8b4ee9167b43079fff9383e412f8fb912274f410d46fef8acdb qtscript-opensource-src-5.5.0-s390.patch"
|