contrib/sdl2_ttf/Pkgfile

24 lines
654 B
Plaintext
Raw Normal View History

2021-11-02 04:11:21 +01:00
# Description: TrueType library for libsdl2.
# URL: https://github.com/libsdl-org/SDL_ttf
# Maintainer: John McQuah, jmcquah at disroot dot org
2019-04-13 10:32:58 +02:00
# Depends on: freetype libsdl2
name=sdl2_ttf
2024-02-03 01:29:42 +01:00
version=2.22.0
release=1
source=(https://github.com/libsdl-org/SDL_ttf/releases/download/release-$version/SDL2_ttf-$version.tar.gz)
2019-04-13 10:32:58 +02:00
build() {
2024-02-03 01:29:42 +01:00
cmake -S SDL2_ttf-$version -B build -G Ninja \
2023-10-15 13:53:14 +02:00
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS"
2019-04-13 10:32:58 +02:00
2023-10-15 13:53:14 +02:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2023-10-15 13:53:14 +02:00
# delete installed license.txt
rm -rf $PKG/usr/share
2019-04-13 10:32:58 +02:00
}