view graphics/gdk-pixbuf/gdk-pixbuf.sh @ 1333:3bcfccf4727e

graphics/gdk-pixbuf: upgrade to 2.42.6
author David Demelier <markand@malikania.fr>
date Thu, 02 Dec 2021 20:31:42 +0100
parents 9867e578b1a9
children
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=gdk-pixbuf
PKGVERSION=2.42.6
PKGREVISION=1
PKGLICENSE="LGPL-2.1-only"
PKGSUMMARY="image loading library"
PKGWWW="https://www.gtk.org"
PKGDOWNLOAD="https://download.gnome.org/sources/gdk-pixbuf/2.42/$PKGNAME-$PKGVERSION.tar.xz"
PKGDEPENDS="glib meson:build shared-mime-info"
PKGOPTIONS="INTROSPECTION JPEG PNG TIFF"

: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${CXX:=clang++}
: ${CXXFLAGS:=-O2}
: ${LDFLAGS:=}
: ${INTROSPECTION:=yes}
: ${JASPER:=yes}
: ${JPEG:=yes}
: ${PNG:=yes}
: ${TIFF:=yes}

if [ "$INTROSPECTION" = "yes" ]; then
	PKGDEPENDS="gobject-introspection $PKGDEPENDS"
	with_introspection="-D introspection=enabled"
else
	with_introspection="-D introspection=disabled"
fi

if [ "$JPEG" = "yes" ]; then
	PKGDEPENDS="libjpeg-turbo $PKGDEPENDS"
	with_jpeg="-D jpeg=true"
else
	with_jpeg="-D jpeg=false"
fi

if [ "$PNG" = "yes" ]; then
	PKGDEPENDS="libpng $PKGDEPENDS"
	with_png="-D png=true"
else
	with_png="-D png=false"
fi

if [ "$TIFF" = "yes" ]; then
	PKGDEPENDS="libtiff $PKGDEPENDS"
	with_tiff="-D tiff=true"
else
	with_tiff="-D tiff=false"
fi

build()
{
	rm -rf $PKGNAME-$PKGVERSION
	tar xvf $PKGNAME-$PKGVERSION.tar.xz
	cd $PKGNAME-$PKGVERSION

	# TODO: enable documentation once docbook-xml is there.
	#patch -p0 < ../patch-meson.patch
	CC="$CC" \
	CFLAGS="$CFLAGS" \
	CXX="$CXX" \
	CXXFLAGS="$CXXFLAGS" \
	LDFLAGS="$LDFLAGS" \
	meson . build \
		--prefix / \
		--buildtype release \
		--default-library shared \
		-D libdir=lib \
		-D docs=false \
		-D man=false \
		-D installed_tests=false \
		$with_introspection \
		$with_jpeg \
		$with_png \
		$with_tiff
	CC="$CC" ninja -C build
	DESTDIR=$DESTDIR ninja -C build install
	sed -i -e "s|prefix=/|prefix=|" $DESTDIR/lib/pkgconfig/*.pc

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}