PKGBUILDs/community/freeimage/PKGBUILD

55 lines
2.1 KiB
Bash
Raw Normal View History

2020-07-28 02:33:53 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
2016-04-30 03:37:16 +00:00
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Mihai Militaru <mihai.militaru@gmx.com>
# Contributor: scippio <scippio@berounet.cz>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2018-06-12 12:41:52 +00:00
# - build AArch64 with -fPIC
2016-04-30 03:37:16 +00:00
pkgname=freeimage
2018-10-18 02:44:42 +00:00
pkgver=3.18.0
2020-07-28 02:33:53 +00:00
pkgrel=7
2016-04-30 03:37:16 +00:00
pkgdesc="Library project for developers who would like to support popular graphics image formats"
2018-06-12 12:41:52 +00:00
arch=('x86_64')
2016-04-30 03:37:16 +00:00
license=('GPL' 'custom:FIPL')
url="http://freeimage.sourceforge.net/"
2018-06-13 20:05:38 +00:00
depends=('libjpeg-turbo' 'openexr' 'openjpeg2' 'libwebp' 'libraw' 'jxrlib')
makedepends=('mesa' 'glu')
2018-06-12 12:41:52 +00:00
source=("https://downloads.sourceforge.net/project/freeimage/Source%20Distribution/${pkgver}/FreeImage${pkgver//./}.zip"
2020-07-25 16:32:21 +00:00
freeimage-unbundle.patch
freeimage-libraw-0.20.patch)
2018-10-18 02:44:42 +00:00
sha512sums=('9d9cc7e2d57552c3115e277aeb036e0455204d389026b17a3f513da5be1fd595421655488bb1ec2f76faebed66049119ca55e26e2a6d37024b3fb7ef36ad4818'
2020-07-25 16:32:21 +00:00
'605fd28aaaf3b0ad225d04dd7de5e34d825bb7aa4b1f3a3b4219657c51b2f1507512916e95ba1a731ca5fc8b704f03b83371ab9ad066d74fd49feee735cf13b5'
'5709e4c5baac3505bf2f2498082fbf6b8614e631fec69fc629036c8d033fbe21434a198e9ae24d577dd65928fd31a0d95c584ea4349d74134f7859d4e57b8397')
2018-06-12 12:41:52 +00:00
prepare() {
cd FreeImage
2018-10-18 02:44:42 +00:00
# TODO: This will only compile against libjpeg-turbo 2 but we will wait for that :D
2018-06-12 12:41:52 +00:00
patch -p1 -i ../freeimage-unbundle.patch # Unbundle libraries (Fedora)
rm -r Source/Lib* Source/ZLib Source/OpenEXR
2018-10-18 02:44:42 +00:00
# can't be built due to private headers
2018-06-12 12:41:52 +00:00
> Source/FreeImage/PluginG3.cpp
> Source/FreeImageToolkit/JPEGTransform.cpp
2020-07-25 16:32:21 +00:00
patch -p1 -i ../freeimage-libraw-0.20.patch # Fix build with libraw 0.20
2018-06-12 12:41:52 +00:00
}
2016-04-30 03:37:16 +00:00
build() {
cd FreeImage
2018-06-12 12:41:52 +00:00
[[ $CARCH == "aarch64" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC"
sh gensrclist.sh
sh genfipsrclist.sh
make -f Makefile.gnu
make -f Makefile.fip
2016-04-30 03:37:16 +00:00
}
package() {
cd FreeImage
2020-07-28 02:33:53 +00:00
make -f Makefile.gnu DESTDIR="${pkgdir}" install
make -f Makefile.fip DESTDIR="${pkgdir}" install
2016-04-30 03:37:16 +00:00
2020-07-28 02:33:53 +00:00
install -D -m644 "${srcdir}"/FreeImage/license-fi.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
2016-04-30 03:37:16 +00:00
}