mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
41 lines
1022 B
Bash
41 lines
1022 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=devil
|
|
pkgver=1.7.8
|
|
pkgrel=6
|
|
pkgdesc="Library for reading several different image formats."
|
|
arch=('i686' 'x86_64')
|
|
url="http://openil.sourceforge.net/"
|
|
depends=('allegro>=4.4.0.1' 'freeglut' 'jasper>=1.900.1-4' 'lcms>=1.18-3' 'libmng>=1.0.10-3' 'libpng>=1.4.0' 'openexr' 'sdl')
|
|
makedepends=('bash')
|
|
license=('GPL3')
|
|
source=(http://downloads.sourceforge.net/openil/DevIL-$pkgver.tar.gz
|
|
libpng14.patch)
|
|
md5sums=('7918f215524589435e5ec2e8736d5e1d'
|
|
'0f839ccefd43b0ee8b4b3f99806147fc')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
# PNG patch.
|
|
patch -Np1 -i $srcdir/libpng14.patch
|
|
|
|
# Configure and build.
|
|
./configure \
|
|
--enable-ILU \
|
|
--enable-ILUT \
|
|
--enable-opengl \
|
|
--enable-sdl \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make prefix=$pkgdir/usr install
|
|
}
|