🔒 Repository is read-only – file editing is disabled.

recipes/gui/harfbuzz/PAGBUILD.yaml main

41 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829303132333435363738394041
pkgname: harfbuzz
pkgver: '14.3.1'
pkgrel: '2'
pkgdesc: 'OpenType text shaping engine'
url: 'https://github.com/harfbuzz/harfbuzz'
arch: x86_64
license:
- MIT

depends: []
makedepends:
- pkgconf
- cairo
- glib
- icu
- freetype
- 'gobject-introspection'

source:
- 'https://github.com/harfbuzz/harfbuzz.git'

sha256sums:
- SKIP

build: |
  cd harfbuzz
  rm -rf build
  meson setup build \
      --prefix=/usr \
      --buildtype=release \
      -Dicu=enabled \
      -Dgobject=enabled \
      -Dintrospection=enabled \
      -Ddocs=disabled \
      -Dtests=disabled
  meson compile -C build
  DESTDIR=${PKGDIR} meson install -C build
  install -Dm644 COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING || true

package: |
  true