sdl2_image: 2.0.4 -> 2.0.5

This commit is contained in:
Danny Rawlins 2020-01-21 22:04:43 +11:00
parent 0e89df3e7d
commit 5df66a3dfa
3 changed files with 22 additions and 15 deletions

View File

@ -3,9 +3,10 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/SDL2/
-rw-r--r-- root/root usr/include/SDL2/SDL_image.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libSDL2_image-2.0.so.0 -> libSDL2_image-2.0.so.0.2.2
-rwxr-xr-x root/root usr/lib/libSDL2_image-2.0.so.0.2.2
lrwxrwxrwx root/root usr/lib/libSDL2_image-2.0.so.0 -> libSDL2_image-2.0.so.0.2.3
-rwxr-xr-x root/root usr/lib/libSDL2_image-2.0.so.0.2.3
-rw-r--r-- root/root usr/lib/libSDL2_image.a
-rwxr-xr-x root/root usr/lib/libSDL2_image.la
lrwxrwxrwx root/root usr/lib/libSDL2_image.so -> libSDL2_image-2.0.so.0.2.2
lrwxrwxrwx root/root usr/lib/libSDL2_image.so -> libSDL2_image-2.0.so.0.2.3
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/SDL2_image.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yUetTbejeE2KQgIOyi21W2ZO2IfFuafJJmNdFbYOHJuU03fi8mkTuYYGJ283xf11/76Z7weHf4hcTBTu8+xhg4=
SHA256 (Pkgfile) = 5c953227571d520e7c4c6f1b957cfa495922db99f5d7feaefe98477347b549e2
SHA256 (.footprint) = 08249051cea689372a903b3e0d9310dde6f3f65d128d58f0dbf30d56d4fd9e90
SHA256 (SDL2_image-2.0.4.tar.gz) = e74ec49c2402eb242fbfa16f2f43a19582a74c2eabfbfb873f00d4250038ceac
RWSagIOpLGJF35DH74beZ73DUPevMvRWm5m9yWbmCV+VGsR+f1waCUs25ZwTHqDXHSZgpftvVratKTx6uvR7wrsb3QYY1/KDgAk=
SHA256 (Pkgfile) = 90bfeb8224d7cad334a477e86cef1dc53597af2aa7a11f798f0c954473895251
SHA256 (.footprint) = 6038de92a679325392213d2d0ae891cc3ae7b3babff79879a678f62e651e5017
SHA256 (SDL2_image-2.0.5.tar.gz) = bdd5f6e026682f7d7e1be0b6051b209da2f402a2dd8bd1c4bd9c25ad263108d0

View File

@ -1,17 +1,23 @@
# Description: SDL_image is an image file loading library.
# URL: http://www.libsdl.org/projects/SDL_image
# Maintainer: unmaintained
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libsdl2 libwebp
name=sdl2_image
version=2.0.4
version=2.0.5
release=1
source=(http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$version.tar.gz)
source=(https://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
cd SDL2_image-$version
./configure \
--prefix=/usr \
--disable-jpg-shared \
--disable-png-shared \
--disable-tif-shared \
--disable-webp-shared
make
make DESTDIR=$PKG install
}