blob: 635ace90ec73ce7036c245df3f13a902847ba1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $Id: PKGBUILD 204813 2014-01-27 19:49:53Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Arjan Timmerman <arjan.archlinux.org>
# Contributor: Tom Newsom <Jeepster.gmx.co.uk>
pkgname=imlib2
pkgver=1.4.6
pkgrel=1
pkgdesc="Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support"
url="http://sourceforge.net/projects/enlightenment/"
arch=('i686' 'x86_64')
license=('BSD')
depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 'libjpeg-turbo')
source=(http://downloads.sourceforge.net/enlightenment/$pkgname-$pkgver.tar.bz2
imlib2-giflib5.patch)
sha1sums=('20e111d822074593e8d657ecf8aafe504e9e2967'
'29d0778ffbe6e57f08048918a79eb1ad6af87bce')
prepare() {
cd $pkgname-$pkgver
patch -Np0 -i ../imlib2-giflib5.patch
}
build() {
cd $pkgname-$pkgver
[ $CARCH = "i686" ] && EXTRAOPTS="--enable-mmx"
[ $CARCH = "x86_64" ] && EXTRAOPTS="--enable-amd64"
./configure --prefix=/usr \
--sysconfdir=/etc/imlib2 \
--x-libraries=/usr/lib $EXTRAOPTS
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
# Install License
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
|