view graphics/gdk-pixbuf/gdk-pixbuf.sh @ 1219:337f950c30f5

misc: use SPDX licenses
author David Demelier <markand@malikania.fr>
date Thu, 30 Sep 2021 09:05:45 +0200
parents 27d1a83dc8d6
children 4ccc42bf0284
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 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.38.1
PKGREVISION=1
PKGLICENSE="LGPL-2.1-only"
PKGSUMMARY="image loading library"
PKGDOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.38/$PKGNAME-$PKGVERSION.tar.xz"
PKGDEPENDS="glib meson:build shared-mime-info"
PKGOPTIONS="JASPER JPEG PNG TIFF X"

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

if [ "$JASPER" = "yes" ]; then
	PKGDEPENDS="graphics/jasper $PKGDEPENDS"
	with_jasper="-D jasper=true"
else
	with_jasper="-D jasper=false"
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

if [ "$X" = "yes" ]; then
	PKGDEPENDS="libx11 $PKGDEPENDS"
	with_x="-D x11=true"
else
	with_x="-D x11=false"
fi

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_jasper \
	$with_jpeg \
	$with_png \
	$with_tiff \
	$with_x
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