PKGBUILDs/tageditor/mingw-w64-webview/PKGBUILD

58 lines
2.1 KiB
Bash
Raw Normal View History

2016-05-11 22:17:53 +02:00
# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
2016-09-11 23:37:58 +02:00
# set the web view provider: either webkit, webengine, auto or none
2016-05-11 22:17:53 +02:00
_webview_provider=webkit
2016-09-11 23:37:58 +02:00
# set the JavaScript provider: either script, qml, auto or none
2016-12-07 00:38:03 +01:00
_js_provider=script
2016-05-11 22:17:53 +02:00
_reponame=tageditor
pkgname=mingw-w64-tageditor-webview
2016-12-07 00:38:03 +01:00
provides=('mingw-w64-tageditor')
conflicts=('mingw-w64-tageditor')
2016-09-11 23:37:58 +02:00
_name=${pkgname#mingw-w64-}
2017-08-31 20:22:02 +02:00
pkgver=2.2.5
2016-05-11 22:17:53 +02:00
pkgrel=1
arch=('any')
pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska'
2016-05-11 22:17:53 +02:00
license=('GPL')
2017-03-09 23:21:29 +01:00
depends=('mingw-w64-crt' 'mingw-w64-qtutilities>=5.6.0' 'mingw-w64-tagparser>=6.2.0')
2017-02-09 16:51:59 +01:00
[[ $_webview_provider == none ]] && [[ $_js_provider == none ]] && depends+=('mingw-w64-qt5-base>=5.6')
2017-03-09 23:21:29 +01:00
[[ $_webview_provider == webkit ]] && depends+=('mingw-w64-qt5-webkit')
2017-02-09 16:51:59 +01:00
[[ $_webview_provider == webengine ]] && depends+=('mingw-w64-qt5-webengine>=5.6')
[[ $_js_provider == script ]] && depends+=('mingw-w64-qt5-script>=5.6')
[[ $_js_provider == qml ]] && depends+=('mingw-w64-qt5-declarative>=5.6')
2016-05-11 22:17:53 +02:00
makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg')
url="https://github.com/Martchus/${_reponame}"
source=("${_reponame}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz")
2017-08-31 20:22:02 +02:00
sha256sums=('1b5e44ffc224cd26531f3dd99945ff5e60c051027421dd027bd3f133fbb0d2a8')
2016-05-11 22:17:53 +02:00
options=(!buildflags staticlibs !strip !emptydirs)
2016-09-11 23:37:58 +02:00
_architectures='i686-w64-mingw32 x86_64-w64-mingw32'
2016-05-11 22:17:53 +02:00
build() {
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
${_arch}-cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/usr/${_arch}" \
-DWEBVIEW_PROVIDER="${_webview_provider}" \
-DJS_PROVIDER="${_js_provider}" \
../
make
popd
done
}
package() {
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
for _arch in ${_architectures}; do
pushd build-${_arch}
make DESTDIR="${pkgdir}" install-mingw-w64-strip
popd
done
}