Date: Tuesday, May 9, 2023 @ 22:34:12
  Author: heftig
Revision: 1459680

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-harfbuzz/repos/multilib-testing-x86_64/
  lib32-harfbuzz/repos/multilib-testing-x86_64/PKGBUILD
    (from rev 1459679, lib32-harfbuzz/trunk/PKGBUILD)

----------+
 PKGBUILD |  131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 131 insertions(+)

Copied: lib32-harfbuzz/repos/multilib-testing-x86_64/PKGBUILD (from rev 
1459679, lib32-harfbuzz/trunk/PKGBUILD)
===================================================================
--- multilib-testing-x86_64/PKGBUILD                            (rev 0)
+++ multilib-testing-x86_64/PKGBUILD    2023-05-09 22:34:12 UTC (rev 1459680)
@@ -0,0 +1,131 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Florian Pritz <[email protected]>
+
+pkgbase=lib32-harfbuzz
+pkgname=(
+  lib32-harfbuzz
+  lib32-harfbuzz-cairo
+  lib32-harfbuzz-icu
+)
+pkgver=7.3.0
+pkgrel=1
+pkgdesc="OpenType text shaping engine - 32-bit"
+url="https://www.freedesktop.org/wiki/Software/HarfBuzz";
+arch=(x86_64)
+license=(MIT)
+makedepends=(
+  git
+  lib32-cairo
+  lib32-freetype2
+  lib32-glib2
+  lib32-icu
+  meson
+  python
+  ragel
+)
+checkdepends=(
+  python-fonttools
+  python-setuptools
+)
+_commit=4584bcdc326564829d3cee3572386c90e4fd1974  # tags/7.3.0^0
+source=("git+https://github.com/harfbuzz/harfbuzz#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd harfbuzz
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd harfbuzz
+}
+
+build() {
+  local meson_options=(
+    --libdir=/usr/lib32
+    -D chafa=disabled
+    -D introspection=disabled
+    -D docs=disabled
+  )
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  # Harfbuzz wants no exceptions
+  CFLAGS="${CFLAGS/-fexceptions/}"
+  CXXFLAGS="${CXXFLAGS/-fexceptions/}"
+
+  arch-meson harfbuzz build "${meson_options[@]}"
+  meson compile -C build
+}
+
+check() {
+  mkdir -p tmp
+  TMPDIR="$PWD/tmp" meson test -C build --print-errorlogs
+  rm -r tmp
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+    d="$srcdir/$p/${f#$pkgdir/}"
+    mkdir -p "$(dirname "$d")"
+    mv "$f" "$d"
+    rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_lib32-harfbuzz() {
+  depends=(
+    harfbuzz
+    libfreetype.so
+    libglib-2.0.so
+    libgobject-2.0.so
+  )
+  provides=(libharfbuzz{,-subset,-gobject}.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  ( cd "$pkgdir"
+    rm -r usr/{bin,include}
+
+    _pick hb-cairo usr/lib32/libharfbuzz-cairo*
+    _pick hb-cairo usr/lib32/pkgconfig/harfbuzz-cairo.pc
+
+    _pick hb-icu usr/lib32/libharfbuzz-icu*
+    _pick hb-icu usr/lib32/pkgconfig/harfbuzz-icu.pc
+  )
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 harfbuzz/COPYING
+}
+
+package_lib32-harfbuzz-cairo() {
+  pkgdesc+=" - Cairo integration"
+  depends=(
+    harfbuzz-cairo
+    libcairo.so
+    libharfbuzz.so
+  )
+  provides=(libharfbuzz-cairo.so)
+
+  mv hb-cairo/* "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 harfbuzz/COPYING
+}
+
+package_lib32-harfbuzz-icu() {
+  pkgdesc+=" - ICU integration"
+  depends=(
+    harfbuzz-icu
+    libharfbuzz.so
+    libicuuc.so
+  )
+  provides=(libharfbuzz-icu.so)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 harfbuzz/COPYING
+}
+
+# vim:set sw=2 sts=-1 et:

Reply via email to