git » gdk-pixbuf2.git » main » tree

[main] / PKGBUILD

# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>

pkgbase=gdk-pixbuf2
pkgname=(
  gdk-pixbuf2
#  gdk-pixbuf2-docs
)
pkgver=2.42.11
pkgrel=2
pkgdesc="An image loading library"
url="https://wiki.gnome.org/Projects/GdkPixbuf"
arch=(armv7h 'aarch64')
license=(LGPL-2.0-or-later)
depends=(
  glib2
  glibc
  libjpeg
  libpng
  libtiff
  shared-mime-info
)
makedepends=(
#  gi-docgen
  git
  gobject-introspection
  meson
#  python-docutils
)
optdepends=(
  "libwmf: Load .wmf and .apm"
  "libopenraw: Load .dng, .cr2, .crw, .nef, .orf, .pef, .arw, .erf, .mrw, and .raf"
  "libavif: Load .avif"
  "libheif: Load .heif, .heic, and .avif"
  "libjxl: Load .jxl"
  "librsvg: Load .svg, .svgz, and .svg.gz"
  "webp-pixbuf-loader: Load .webp"
)
source=(
  "git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#tag=$pkgver"
  gdk-pixbuf-query-loaders.hook
  0001-fix-build-failure-due-to-typo-in-the-build-script.patch
)
b2sums=('23af2f9f3cd542e6d6d14203a8037400df1e22e89884bddfc1439195e5c788ceec532a7bdda2c1685bb2355ea1303484872b836fdb6827cd448b57c36e6786a6'
        '5a00d34888e207d70d02369015d029f4c0450fc5a02b4b257de8e5df04380dc550723f351433859224c96c3c6390896f2166673af65e8a09eb57024f5a34301b'
        '16e5b72b2a50c1c733a1688c2ff6b55b6a920530bacc28e8e60dfe62c0b40c875611186c4962b2d183ef2e3ab26ea0a5108f3bbe20c1059fef0dbf4f16891f23')

prepare() {
  cd gdk-pixbuf

  # https://gitlab.archlinux.org/archlinux/packaging/packages/gdk-pixbuf2/-/issues/1
  # https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/merge_requests/165
  git apply -3 ../0001-fix-build-failure-due-to-typo-in-the-build-script.patch
}

build() {
  local meson_options=(
    -D builtin_loaders=all
 #   -D gtk_doc=true
    -D installed_tests=false
    -D introspection=enabled
 #   -D man=true
     -Dman=false
    -D others=enabled
  )

  arch-meson gdk-pixbuf build "${meson_options[@]}"
  meson compile -C build
}

#check() {
#  meson test -C build --print-errorlogs
#}

package_gdk-pixbuf2() {
  provides=(libgdk_pixbuf-2.0.so)
  install=gdk-pixbuf2.install

  meson install -C build --destdir "$pkgdir"

 # mkdir -p doc/usr/share
 # mv {"$pkgdir",doc}/usr/share/doc

  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
}

#package_gdk-pixbuf2-docs() {
#  pkgdesc+=" (documentation)"
#  depends=()

#  mv doc/* "$pkgdir"
#}

# vim:set sw=2 sts=-1 et: