PKGBUILDs/qt5-translations/mingw-w64/PKGBUILD

46 lines
1.4 KiB
Bash
Raw Normal View History

2016-02-03 20:42:14 +01:00
# Maintainer: Martchus <martchus@gmx.net>
# Contributor: ant32 <antreimer@gmail.com>
# Contributor: Filip Brcic <brcha@gna.org>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
# Contains only *.qm files (and no shared/static libs).
2016-02-03 20:42:14 +01:00
_qt_module=qttranslations
pkgname="mingw-w64-qt5-translations"
2019-11-09 03:03:56 +01:00
pkgver=5.13.2
2016-12-20 23:05:26 +01:00
pkgrel=1
2016-02-03 20:42:14 +01:00
arch=('any')
pkgdesc="A cross-platform application and UI framework (translations, mingw-w64)"
depends=('mingw-w64-qt5-base')
makedepends=('mingw-w64-gcc' 'mingw-w64-pkg-config' 'mingw-w64-qt5-tools')
2016-02-03 20:42:14 +01:00
options=('!strip' '!buildflags' 'staticlibs')
groups=('mingw-w64-qt5')
2016-11-01 19:46:16 +01:00
license=('GPL3' 'LGPL3' 'FDL' 'custom')
url='https://www.qt.io/'
2017-12-08 19:49:53 +01:00
_pkgfqn="${_qt_module}-everywhere-src-${pkgver}"
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${pkgver}/submodules/${_pkgfqn}.tar.xz")
2019-11-09 03:03:56 +01:00
sha256sums=('25755941a2525de2d7ae48e0011d04db7cc09e4e73fe83293206ceafa0aa82d9')
2016-02-03 20:42:14 +01:00
_architectures='i686-w64-mingw32 x86_64-w64-mingw32'
2016-02-03 20:42:14 +01:00
build() {
2016-02-03 20:42:14 +01:00
cd "${srcdir}/${_pkgfqn}"
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
${_arch}-qmake-qt5 ../${_qt_module}.pro
make
popd
done
}
package() {
cd "${srcdir}/${_pkgfqn}"
for _arch in ${_architectures}; do
pushd build-${_arch}
make INSTALL_ROOT="${pkgdir}" install
popd
done
}