18 lines
435 B
Plaintext
18 lines
435 B
Plaintext
# Description: SDL_image is an image file loading library.
|
|
# URL: http://www.libsdl.org/projects/SDL_image
|
|
# Maintainer: unmaintained
|
|
# Depends on: libsdl2 libwebp
|
|
|
|
name=sdl2_image
|
|
version=2.0.4
|
|
release=1
|
|
source=(http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SDL2_image-$version
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|