contrib/sdl2_ttf/Pkgfile

18 lines
419 B
Plaintext
Raw Normal View History

2021-11-02 04:11:21 +01:00
# Description: TrueType library for libsdl2.
2019-04-13 10:32:58 +02: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-07-10 12:08:03 +02:00
version=2.20.0
2019-04-13 10:32:58 +02: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 10:32:58 +02:00
build() {
cd SDL2_ttf-$version
./configure --prefix=/usr
2022-02-05 14:45:56 +01:00
make
2019-04-13 10:32:58 +02:00
make DESTDIR=$PKG install
}