diff options
author | Martchus | 2025-04-27 23:32:32 +0200 |
---|---|---|
committer | Martchus | 2025-04-27 23:32:32 +0200 |
commit | 07236bd347f217c48cdc8073ea1d9c86a35f8fe2 (patch) | |
tree | 97267ef6d0ba249bcd7770831c546a954746dcd7 | |
download | aur-07236bd347f217c48cdc8073ea1d9c86a35f8fe2.tar.gz |
Import from PKGBUILDs repo
-rw-r--r-- | .SRCINFO | 25 | ||||
-rw-r--r-- | PKGBUILD | 51 | ||||
-rw-r--r-- | PKGBUILD.sh.ep | 1 | ||||
-rw-r--r-- | qthttpserver-sha256.txt | 1 |
4 files changed, 78 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..b597aa1ef56d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,25 @@ +pkgbase = mingw-w64-qt6-httpserver-static + pkgdesc = Qt HTTP Server (mingw-w64) + pkgver = 6.9.0 + pkgrel = 1 + url = https://www.qt.io + arch = any + groups = mingw-w64-qt6 + license = GPL3 + license = LGPL3 + license = FDL + license = custom + makedepends = mingw-w64-cmake-static + makedepends = qt6-base + makedepends = qt6-declarative + makedepends = ninja + depends = mingw-w64-qt6-websockets-static + optdepends = mingw-w64-qt6-declarative-static: QML bindings + options = !strip + options = !buildflags + options = staticlibs + options = !emptydirs + source = https://download.qt.io/official_releases/qt/6.9/6.9.0/submodules/qthttpserver-everywhere-src-6.9.0.tar.xz + sha256sums = 91d2cfef1b4c4c09c6189ab26a3a0afa02f0e9512683aecf4d1b44e56112ae73 + +pkgname = mingw-w64-qt6-httpserver-static diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..4249804fd3e7 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,51 @@ +# 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. + +pkgname=mingw-w64-qt6-httpserver-static +_qtver=6.9.0 +pkgver=${_qtver/-/} +pkgrel=1 +arch=(any) +url='https://www.qt.io' +license=(GPL3 LGPL3 FDL custom) +pkgdesc='Qt HTTP Server (mingw-w64)' +depends=('mingw-w64-qt6-websockets-static') +optdepends=('mingw-w64-qt6-declarative-static: QML bindings') +makedepends=('mingw-w64-cmake-static' 'qt6-base' 'qt6-declarative' 'ninja') +options=('!strip' '!buildflags' 'staticlibs' '!emptydirs') +groups=(mingw-w64-qt6) +_pkgfqn="qthttpserver-everywhere-src-${_qtver}" +source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz") +sha256sums=('91d2cfef1b4c4c09c6189ab26a3a0afa02f0e9512683aecf4d1b44e56112ae73') + +_architectures=${MINGW_W64_QT6_ARCHS:-x86_64-w64-mingw32} + +build() { + for _arch in ${_architectures}; do + export PKG_CONFIG=/usr/bin/$_arch-pkg-config + $_arch-cmake-static -G Ninja -B build-$_arch -S $_pkgfqn \ + -DCMAKE_INSTALL_PREFIX:PATH="/usr/$_arch/static" \ + -DCMAKE_DISABLE_FIND_PACKAGE_harfbuzz=TRUE \ + -DFEATURE_static_runtime=ON \ + -DFEATURE_pkg_config=ON + cmake --build build-$_arch + done +} + +package() { + for _arch in ${_architectures}; do + DESTDIR="$pkgdir" cmake --install build-$_arch + + find "$pkgdir/usr/$_arch" -iname '*.exe' -exec $_arch-strip --strip-all {} \; + find "$pkgdir/usr/$_arch" -iname '*.dll' -exec $_arch-strip --strip-unneeded {} \; + find "$pkgdir/usr/$_arch" -iname '*.a' -exec $_arch-strip -g {} \; + [[ -d "$pkgdir/usr/$_arch/static/share/doc" ]] && rm -r "$pkgdir/usr/$_arch/static/share/doc" + done + + install -d "$pkgdir"/usr/share/licenses + ln -s /usr/share/licenses/mingw-w64-qt6-base-static "$pkgdir"/usr/share/licenses/$pkgname + +} + diff --git a/PKGBUILD.sh.ep b/PKGBUILD.sh.ep new file mode 100644 index 000000000000..87756da456f4 --- /dev/null +++ b/PKGBUILD.sh.ep @@ -0,0 +1 @@ +%= include "$default_package_name/mingw-w64/PKGBUILD"; diff --git a/qthttpserver-sha256.txt b/qthttpserver-sha256.txt new file mode 100644 index 000000000000..ec7b28aab194 --- /dev/null +++ b/qthttpserver-sha256.txt @@ -0,0 +1 @@ +91d2cfef1b4c4c09c6189ab26a3a0afa02f0e9512683aecf4d1b44e56112ae73 |