PKGBUILDs/tageditor/mingw-w64/PKGBUILD

65 lines
2.8 KiB
Bash
Raw Normal View History

2015-08-04 20:04:32 +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
2018-11-01 05:16:53 +01:00
_webview_provider=${TAGEDITOR_WEBVIEW_PROVIDER:-none}
2016-09-11 23:37:58 +02:00
# set the JavaScript provider: either script, qml, auto or none
2018-11-01 05:16:53 +01:00
_js_provider=${TAGEDITOR_JS_PROVIDER:-qml}
# whether the experimental JSON export is enabled: ON or OFF
2018-11-01 05:16:53 +01:00
_json_export=${TAGEDITOR_JSON_EXPORT:-ON}
2015-12-02 02:20:30 +01:00
_reponame=tageditor
pkgname=mingw-w64-tageditor
2016-09-11 23:37:58 +02:00
_name=${pkgname#mingw-w64-}
2019-04-21 22:30:55 +02:00
pkgver=3.2.1
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'
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')
2015-12-06 19:17:57 +01:00
makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg')
[[ $_json_export == ON ]] && makedepends+=('mingw-w64-reflective-rapidjson')
2015-12-02 02:20:30 +01:00
url="https://github.com/Martchus/${_reponame}"
2016-10-03 14:23:34 +02:00
source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz")
2019-04-21 22:30:55 +02:00
sha256sums=('c3b15d83adf92a4c36c2f1e092a12b79f4177664cbef2ca53e82d8dfe0dc36d6')
2015-12-06 19:17:57 +01:00
options=(!buildflags staticlibs !strip !emptydirs)
2016-09-11 23:37:58 +02:00
_architectures='i686-w64-mingw32 x86_64-w64-mingw32'
build() {
2015-12-24 16:50:30 +01:00
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
for _arch in ${_architectures}; do
2018-02-05 23:29:55 +01:00
local gcc_version=$($_arch-gcc --version | grep "^$_arch-gcc" | sed 's/^.* //g')
2015-12-24 16:50:30 +01:00
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}" \
2018-02-05 23:29:55 +01:00
-DENABLE_JSON_EXPORT:BOOL="${_json_export}" \
-DREFLECTION_GENERATOR_EXECUTABLE:FILEPATH='/usr/bin/reflective_rapidjson_generator' \
2018-02-05 23:29:55 +01:00
-DREFLECTION_GENERATOR_TRIPLE:STRING="${_arch}" \
2018-05-08 19:05:35 +02:00
-DREFLECTION_GENERATOR_INCLUDE_DIRECTORIES="/usr/lib/gcc/${_arch}/${gcc_version}/include;/usr/${_arch}/include/c++/${gcc_version};/usr/${_arch}/include/c++/${gcc_version}/${_arch};/usr/${_arch}/include" \
../
2015-12-24 16:50:30 +01:00
make
popd
done
}
package() {
2015-12-24 16:50:30 +01:00
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
for _arch in ${_architectures}; do
pushd build-${_arch}
make DESTDIR="${pkgdir}" install-mingw-w64-strip
2015-12-24 16:50:30 +01:00
popd
done
}