blob: e595a178d0b11a8ad01fe18dde39842d5ae12f03 (
plain)
1 # Description: SDL_image is an image file loading library.
2 # URL: http://www.libsdl.org/projects/SDL_image
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libsdl2 libwebp
5
6 name=sdl2_image
7 version=2.0.5
8 release=1
9 source=(https://www.libsdl.org/projects/SDL_image/release/SDL2_image-$version.tar.gz)
10
11 build() {
12 cd SDL2_image-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-jpg-shared \
17 --disable-png-shared \
18 --disable-tif-shared \
19 --disable-webp-shared
20
21 make
22 make DESTDIR=$PKG install
23 }
|