# Maintainer: Ronald van Haren # Contributor: Arjan Timmerman # Contributor: Tom Newsom # ALARM: Kevin Mihelich # - remove --enable-amd64 from configure pkgname=imlib2 pkgver=1.12.3 pkgrel=1 pkgdesc='Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support' url='https://sourceforge.net/projects/enlightenment/' arch=('x86_64') license=('BSD') makedepends=(# Currently highway does provide a static library only, that libjxl links to. # This introduces a build dependency for now... 'highway' 'libheif' 'libid3tag' 'libjxl' 'librsvg' 'libspectre' 'libwebp' 'openjpeg2') depends=('bzip2' 'freetype2' 'giflib' 'libjpeg-turbo' 'libpng' 'libtiff' 'libxext' 'xz') optdepends=('libheif: HEIF loader (for AVIF)' 'libid3tag: ID3 loader' 'libjxl: JXL loader' 'librsvg: SVG loader' 'libspectre: PS loader' 'libwebp: WEBP loader' 'openjpeg2: J2K loader') source=("https://downloads.sourceforge.net/project/enlightenment/imlib2-src/${pkgver}/${pkgname}-${pkgver}.tar.xz") sha256sums=('96244656576a3e0a6f58b78e514ddc919622ac6806711bc231837eee62c1de34') sha512sums=('79feea73fb67508ffdce52f8430c2c887b06d8bcb70f6e3bc551c86d521ebf61fc1eff10994b69def4d7a237873f107066aefa367e05b5f89b5d675751d9314f') build() { cd "${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ --sysconfdir=/etc/imlib2 \ --x-libraries=/usr/lib sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool make } check() { cd "${pkgname}-${pkgver}" make check } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install # Install License install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" }