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

recipes/gui/pango/PAGBUILD.yaml main

49 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
pkgname: pango
pkgver: '1.58.2'
pkgrel: '1'
pkgdesc: 'Library for layout and rendering of text'
url: 'https://www.pango.org/'
arch: x86_64
license:
- LGPL2

depends: []
makedepends:
- ninja
- meson
- cairo
- libthai
- freetype
- 'xorg-libxft'
- 'gobject-introspection'
- harfbuzz
- 'xorg-libxxf86vm'
- 'gtk-doc'
- fribidi

source:
- 'https://gitlab.gnome.org/GNOME/pango/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}

  rm -rf build
  mkdir build
  cd build

  meson setup .. \
        --prefix=/usr \
        --buildtype=release \
        -D introspection=enabled

  ninja

  DESTDIR=${PKGDIR} ninja install

  install -Dm644 ../COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING

package: |
  true