opt/babl/Pkgfile
Juergen Daubert a4630b482f [notify] babl: update to 0.1.68
babl upstream switched from autotools to meson, therefore
all libtool files (*.la) are gone.
Every port that lists the old babl libbabl-0.1.la file in its
own libtool file has to be rebuild if other ports depends at
build time on it, here mainly opt/gegl and opt/gimp.

To find the broken files the following script kan be uses:

  for f in $(grep -lrs libbabl-0.1.la /usr/lib); do
      pkginfo -o $f | awk '!/^Package/ {print $1}';
  done | sort -u
2019-07-30 15:59:56 +02:00

17 lines
445 B
Plaintext

# Description: Dynamic, any to any, pixel format translation library
# URL: http://gegl.org/babl
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Simone Rota, sip at crux dot nu
# Depends on: meson ninja
name=babl
version=0.1.68
release=1
source=(https://ftp.gtk.org/pub/babl/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
meson build --prefix=/usr
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
}