From 873665024ebfaa761ee49b508a79db7178aeb778 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 4 Jun 2022 15:08:04 +0100 Subject: added gnupg --- repo/sdl2-image/sdl2-image.xibuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 repo/sdl2-image/sdl2-image.xibuild (limited to 'repo/sdl2-image/sdl2-image.xibuild') diff --git a/repo/sdl2-image/sdl2-image.xibuild b/repo/sdl2-image/sdl2-image.xibuild new file mode 100644 index 0000000..893107a --- /dev/null +++ b/repo/sdl2-image/sdl2-image.xibuild @@ -0,0 +1,38 @@ +#!/bin/sh + +NAME="sdl2-image" +DESC="A simple library to load images of various formats as SDL surfaces" + +MAKEDEPS=" sdl2 libpng libjpeg-turbo libwebp tiff zlib" + +PKG_VER=2.0.5 +SOURCE="https://www.libsdl.org/projects/SDL_image/release/SDL2_image-$PKG_VER.tar.gz" + +ADDITIONAL=" +CVE-2019-13616.patch +" + +prepare () { + apply_patches +} + +build() { + ./configure \ + --prefix=/usr \ + --disable-static \ + --enable-png \ + --enable-png-shared \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make +} + +check() { + make check +} + +package() { + make DESTDIR="$PKG_DEST" install +} + -- cgit v1.2.1