sdl_image: 1.2.12 -> 1.2.13

This commit is contained in:
John McQuah 2023-10-15 11:15:37 +00:00
parent a940725ca7
commit 3e5b290219
3 changed files with 15 additions and 14 deletions

View File

@ -3,10 +3,10 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/SDL/
-rw-r--r-- root/root usr/include/SDL/SDL_image.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libSDL_image-1.2.so.0 -> libSDL_image-1.2.so.0.8.4
-rwxr-xr-x root/root usr/lib/libSDL_image-1.2.so.0.8.4
lrwxrwxrwx root/root usr/lib/libSDL_image-1.2.so.0 -> libSDL_image-1.2.so.0.8.5
-rwxr-xr-x root/root usr/lib/libSDL_image-1.2.so.0.8.5
-rw-r--r-- root/root usr/lib/libSDL_image.a
-rwxr-xr-x root/root usr/lib/libSDL_image.la
lrwxrwxrwx root/root usr/lib/libSDL_image.so -> libSDL_image-1.2.so.0.8.4
lrwxrwxrwx root/root usr/lib/libSDL_image.so -> libSDL_image-1.2.so.0.8.5
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/SDL_image.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF379zvsKgS7yWlU38j1fRxX7Mcob0HvAtdoUguzbl3qXgDhK/xpnAJGtpXJXWQZnthxypVuWR+qb9O1HwBo1JBgw=
SHA256 (Pkgfile) = f0974a87dfe7e4a830676c146215163b419ea1b7c90bd78c7c923d7baeb63e4d
SHA256 (.footprint) = dead0d87cb18f992d71d08dfa9764d48f7c20966ef2f721bf4f96d4b600a7553
SHA256 (SDL_image-1.2.12.tar.gz) = 0b90722984561004de84847744d566809dbb9daf732a9e503b91a1b5a84e5699
RWSagIOpLGJF31u7UIETHtLt9ruN5Uj1CMhRDGnxG/iUMkPy8lNdbhSeu9aRY5PYDFG34Ds2Y8QVkPOZGWPKnp6KKlHVm5aRAAQ=
SHA256 (Pkgfile) = 0aaac0552237941757172285c66401c09807967c22298bb0a7cc84297a1eecbb
SHA256 (.footprint) = 84c100c0727cdcdf5b793788d401b9568ba9ccfeb2f26c911a38ccdde60de58d
SHA256 (sdl_image-1.2.13.tar.gz) = 4930f9d8b2523b8a04ae9c170ed3a6d26f52d6877d741e98554964e7161c5195

View File

@ -1,17 +1,18 @@
# Description: SDL_image is an image file loading library.
# URL: http://www.libsdl.org/projects/SDL_image
# URL: https://www.github.com/libsdl-org/SDL_image
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: libtiff libpng libsdl
# Optional: libwebp
name=sdl_image
version=1.2.12
version=1.2.13
_commit=4a2fe2441695e3813b3f998a802f364b4cdbdd17
release=1
source=(http://www.libsdl.org/projects/SDL_image/release/SDL_image-$version.tar.gz)
source=(https://github.com/libsdl-org/SDL_image/archive/$_commit/$name-$version.tar.gz)
build() {
cd SDL_image-$version
./configure --prefix=/usr --disable-sdltest
make
make DESTDIR=$PKG install
cd SDL_image-$_commit
./configure --prefix=/usr --disable-sdltest
make
make DESTDIR=$PKG install
}