26 lines
614 B
Plaintext
26 lines
614 B
Plaintext
|
# Description: An image loading and rendering library for X11R6.
|
||
|
# URL: http://ftp.acc.umu.se/pub/GNOME/sources/imlib/1.9/
|
||
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Packager: Daniel Mueller, daniel at danm dot de
|
||
|
# Depends on: gtk1 libungif libjpeg libtiff
|
||
|
|
||
|
name=imlib
|
||
|
version=1.9.15
|
||
|
release=1
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/imlib/${version%.*}/imlib-$version.tar.bz2
|
||
|
imlib-$version.patch)
|
||
|
|
||
|
build() {
|
||
|
cd imlib-$version
|
||
|
# Security patch
|
||
|
patch -p1 -i $SRC/imlib-$version.patch
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-modules
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|
||
|
|