temp/qt5-qtdeclarative: drop fork, upstreamed
This commit is contained in:
parent
56f9afaefe
commit
ea8eba7a67
1 changed files with 0 additions and 61 deletions
|
@ -1,61 +0,0 @@
|
||||||
# Forked from Alpine so we can have our version built aganst our qtbase
|
|
||||||
pkgname=qt5-qtdeclarative
|
|
||||||
_pkgname=${pkgname/qt5-//}-everywhere-src
|
|
||||||
pkgver=9999
|
|
||||||
_pkgver=5.12.5
|
|
||||||
_ver=${_pkgver/_p/-}
|
|
||||||
_ver=${_ver/_/-}
|
|
||||||
_ver=${_ver/beta0/beta}
|
|
||||||
_ver=${_ver/rc0/rc}
|
|
||||||
_V=${_ver/rc/RC}
|
|
||||||
pkgrel=2
|
|
||||||
pkgdesc="Qt5 - QtQml, QtQuick components"
|
|
||||||
url="http://qt-project.org/"
|
|
||||||
arch="all"
|
|
||||||
license="LGPLv2 with exceptions or GPLv3 with exceptions"
|
|
||||||
makedepends="qt5-qtbase-dev python"
|
|
||||||
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/$_pkgname-$_V.tar.xz"
|
|
||||||
|
|
||||||
_qt5_prefix=/usr/lib/qt5
|
|
||||||
builddir="$srcdir"/$_pkgname-${_V%-*}
|
|
||||||
|
|
||||||
prepare() {
|
|
||||||
default_prepare
|
|
||||||
# Compile for armv7 instead of armhf (armv6), so the JIT compiler
|
|
||||||
# works. The non-JIT version is slow and broken (#878).
|
|
||||||
if [ "$CARCH" == "armhf" ]; then
|
|
||||||
{
|
|
||||||
echo 'QMAKE_CLAGS="-mthumb-interwork -mthumb -march=armv7"'
|
|
||||||
echo 'QMAKE_CXXFLAGS="-mthumb-interwork -mthumb -march=armv7"'
|
|
||||||
} >> "$builddir"/src/qml/qml.pro
|
|
||||||
msg "QML will be compiled for armv7 instead of armhf (armv6) (#878)!"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "$builddir"
|
|
||||||
qmake-qt5 && make
|
|
||||||
}
|
|
||||||
|
|
||||||
check() {
|
|
||||||
cd "$builddir"
|
|
||||||
make check
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "$builddir"
|
|
||||||
make install INSTALL_ROOT="$pkgdir"
|
|
||||||
|
|
||||||
mkdir -p "$pkgdir"/usr/bin/
|
|
||||||
for i in "$pkgdir"/$_qt5_prefix/bin/*; do
|
|
||||||
ln -s ../lib/qt5/bin/${i##*/} "$pkgdir"/usr/bin/${i##*/}-qt5
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="026c5024c06e44b6e91099d1ee912f38017f314ae0125227010d25d733447c692299cc7c47edc1a4bf39366a9c9c9fe77d3a249905f2ae982d0725317d824b9b qtdeclarative-everywhere-src-5.12.5.tar.xz"
|
|
Loading…
Reference in a new issue