mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
55 lines
1.8 KiB
Bash
55 lines
1.8 KiB
Bash
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
|
# Contributor: Arjan Timmerman <arjan.archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster.gmx.co.uk>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove --enable-amd64 from configure
|
|
|
|
pkgname=imlib2
|
|
pkgver=1.12.1
|
|
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=('8c24d2d189c4d5ae602dbf2fc0fbb117aa923eab6c883041f0feeca4e8c6774e')
|
|
sha512sums=('49d1ee7959cad2444dbe3a2b4c122899ad7935712e92ae63e28e33284839edaf942064bf436b29faf6bb99c502d414d97bec2f2c74d7fb09db960b29a33c9d8b')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/imlib2 \
|
|
--x-libraries=/usr/lib
|
|
|
|
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"
|
|
}
|