23 lines
464 B
Plaintext
23 lines
464 B
Plaintext
|
# Description: SDL_image is a simple library to load images of various formats as SDL surfaces.
|
||
|
# URL: http://www.libsdl.org/projects/SDL_image
|
||
|
# Packager: berlius at nutyx dot com
|
||
|
# Depends on: sdl libjpeg-turbo libpng libtiff libwebp
|
||
|
|
||
|
name=sdl-image
|
||
|
version=1.2.12
|
||
|
release=1
|
||
|
|
||
|
source=(http://www.libsdl.org/projects/SDL_image/release/SDL_image-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
|
||
|
cd SDL_image-$version
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
}
|