mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 09:20:36 +00:00
Ports: Added a SDL2_image port
This commit is contained in:
parent
4e2d4b193a
commit
8324e48218
Notes:
sideshowbarker
2024-07-18 20:55:20 +09:00
Author: https://github.com/Baitinq Commit: https://github.com/SerenityOS/serenity/commit/8324e48218b Pull-request: https://github.com/SerenityOS/serenity/pull/6055
3 changed files with 35 additions and 0 deletions
|
@ -71,6 +71,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`quake`](quake/) | Quake | 0.65 | https://github.com/SerenityOS/SerenityQuake |
|
||||
| [`rsync`](rsync/) | rsync | 3.1.3 | https://rsync.samba.org/ |
|
||||
| [`SDL2`](SDL2/) | Simple DirectMedia Layer (SDL2) | | https://github.com/SerenityOS/SDL |
|
||||
| [`SDL2_image`](SDL2_image/) | SDL2\_image (Image loading add-on for SDL2) | 2.0.5 | https://www.libsdl.org/projects/SDL_image/ |
|
||||
| [`SDL2_mixer`](SDL2_mixer/) | SDL2\_mixer (audio mixer add-on for SDL2) | 2.0.4 | https://www.libsdl.org/projects/SDL_mixer/ |
|
||||
| [`SDL2_ttf`](SDL2_ttf/) | SDL2\_ttf (TrueType Font add-on for SDL2) | 2.0.15 | https://www.libsdl.org/projects/SDL_ttf/ |
|
||||
| [`sed`](sed/) | GNU sed | 4.2.1 | https://www.gnu.org/software/sed/ |
|
||||
|
|
23
Ports/SDL2_image/package.sh
Executable file
23
Ports/SDL2_image/package.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=SDL2_image
|
||||
useconfigure=true
|
||||
version=2.0.5
|
||||
depends="SDL2 libpng libjpeg"
|
||||
files="https://www.libsdl.org/projects/SDL_image/release/SDL2_image-${version}.tar.gz SDL_image-${version}.tar.gz"
|
||||
|
||||
configure() {
|
||||
run ./configure \
|
||||
--host="${SERENITY_ARCH}-pc-serenity" \
|
||||
--with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \
|
||||
--prefix="/usr" \
|
||||
--enable-webp=false --enable-webp-shared=false \
|
||||
LDFLAGS="-lgui -lgfx -lipc -lcore -lm"
|
||||
}
|
||||
|
||||
build() {
|
||||
run make -k
|
||||
}
|
||||
|
||||
install() {
|
||||
run make -k DESTDIR="${SERENITY_BUILD_DIR}/Root" install
|
||||
}
|
11
Ports/SDL2_image/patches/configure.patch
Normal file
11
Ports/SDL2_image/patches/configure.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- SDL2_image-2.0.5/config.sub 2019-06-30 06:52:03.000000000 +0200
|
||||
+++ /home/baitinq/serenity/Ports/SDL2_image-2.0.5/config.sub 2021-04-01 01:55:57.769997556 +0200
|
||||
@@ -1363,7 +1363,7 @@
|
||||
# The portable systems comes first.
|
||||
# Each alternative MUST end in a * to match a version number.
|
||||
# -sysv* is not here because it comes later, after sysvr4.
|
||||
- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
|
||||
+ -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -serenity* | -irix* \
|
||||
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
|
||||
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
|
||||
| -sym* | -kopensolaris* | -plan9* \
|
Loading…
Reference in a new issue