Date: Tuesday, March 27, 2018 @ 22:24:06
  Author: foutrelis
Revision: 312976

archrelease: copy trunk to multilib-staging-x86_64

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

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

Copied: lib32-harfbuzz/repos/multilib-staging-x86_64/PKGBUILD (from rev 312975, 
lib32-harfbuzz/trunk/PKGBUILD)
===================================================================
--- multilib-staging-x86_64/PKGBUILD                            (rev 0)
+++ multilib-staging-x86_64/PKGBUILD    2018-03-27 22:24:06 UTC (rev 312976)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Florian Pritz <bluew...@xinu.at>
+
+pkgname=(lib32-harfbuzz lib32-harfbuzz-icu)
+pkgver=1.7.6
+pkgrel=2
+pkgdesc="OpenType text shaping engine (32-bit)"
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz";
+arch=(x86_64)
+license=(MIT)
+makedepends=(lib32-glib2 lib32-freetype2 lib32-cairo lib32-icu harfbuzz 
gcc-multilib ragel git
+             python)
+_commit=ff2f81432bb0484a019a678058595e10217df51d  # tags/1.7.6^0
+source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd harfbuzz
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd harfbuzz
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd harfbuzz
+  ./configure \
+    --prefix=/usr \
+    --libdir=/usr/lib32 \
+    --with-cairo \
+    --with-freetype \
+    --with-glib \
+    --with-gobject \
+    --without-graphite2 \
+    --with-icu \
+    --disable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd harfbuzz
+  make check
+}
+
+package_lib32-harfbuzz() {
+  depends=(lib32-glib2 lib32-freetype2 harfbuzz)
+
+  cd harfbuzz
+  make DESTDIR="$pkgdir" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s harfbuzz "$pkgdir/usr/share/licenses/lib32-harfbuzz"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/lib32/pkgconfig; cd ../hb-icu
+  mv "$pkgdir"/usr/lib32/libharfbuzz-icu* ./usr/lib32
+  mv "$pkgdir"/usr/lib32/pkgconfig/harfbuzz-icu.pc ./usr/lib32/pkgconfig
+}
+
+package_lib32-harfbuzz-icu() {
+  pkgdesc="OpenType text shaping engine (32-bit, ICU integration)"
+  depends=(lib32-harfbuzz lib32-icu harfbuzz-icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s harfbuzz-icu "$pkgdir/usr/share/licenses/lib32-harfbuzz-icu"
+}

Reply via email to