2021-11-02 14:11:21 +11:00
|
|
|
# Description: TrueType library for libsdl2.
|
2019-04-13 18:32:58 +10:00
|
|
|
# URL: https://www.libsdl.org/projects/SDL_ttf/
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: freetype libsdl2
|
|
|
|
|
|
|
|
name=sdl2_ttf
|
2022-08-20 18:14:53 +02:00
|
|
|
version=2.20.1
|
2019-04-13 18:32:58 +10:00
|
|
|
release=1
|
2022-02-05 14:45:56 +01:00
|
|
|
source=(https://github.com/libsdl-org/SDL_ttf/releases/download/release-$version/SDL2_ttf-$version.tar.gz)
|
2019-04-13 18:32:58 +10:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd SDL2_ttf-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr
|
2022-02-05 14:45:56 +01:00
|
|
|
make
|
2019-04-13 18:32:58 +10:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|