mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
996 B
Bash
33 lines
996 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=devil
|
|
pkgver=1.7.8
|
|
pkgrel=5
|
|
pkgdesc="Library for reading several different image formats"
|
|
arch=('i686' 'x86_64')
|
|
url="http://openil.sourceforge.net/"
|
|
depends=('allegro>=4.4.0.1' 'sdl' 'libpng>=1.4.0' 'libmng>=1.0.10-3' 'freeglut'
|
|
'jasper>=1.900.1-4' 'lcms>=1.18-3' 'openexr')
|
|
makedepends=('bash')
|
|
options=('!libtool' '!docs')
|
|
license=('GPL')
|
|
source=(http://downloads.sourceforge.net/openil/DevIL-$pkgver.tar.gz libpng14.patch)
|
|
|
|
build() {
|
|
cd $srcdir/devil-$pkgver
|
|
|
|
patch -Np1 -i $srcdir/libpng14.patch || return 1
|
|
# configure and build
|
|
./configure --prefix=/usr --enable-ILU --enable-ILUT --enable-opengl --enable-sdl
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
}
|
|
md5sums=('7918f215524589435e5ec2e8736d5e1d'
|
|
'0f839ccefd43b0ee8b4b3f99806147fc')
|