mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
25 lines
843 B
Bash
Executable file
25 lines
843 B
Bash
Executable file
#!/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 f26f3a153360a8f09ed5220ef7b07aea"
|
|
auth_type=md5
|
|
|
|
configure() {
|
|
run ./configure \
|
|
--host="${SERENITY_ARCH}-pc-serenity" \
|
|
--with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr/local" \
|
|
--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
|
|
${CC} -shared -o $DESTDIR/usr/local/lib/libSDL2_image.so -Wl,--whole-archive $DESTDIR/usr/local/lib/libSDL2_image.a -Wl,--no-whole-archive
|
|
rm -f $DESTDIR/usr/local/lib/libSDL2_image.la
|
|
}
|