diff options
author | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
commit | 9a26d3fdc7fca2df6f824b56034ab9a823e898d8 (patch) | |
tree | 278bbf05c72536a30e701eebbd3546ba137543e7 /repo/sdl2-ttf | |
parent | f6332a43c35387c4a2dea1746be5fd092890ae0e (diff) |
added python deps for libvirt
Diffstat (limited to 'repo/sdl2-ttf')
-rw-r--r-- | repo/sdl2-ttf/sdl2-ttf.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/sdl2-ttf/sdl2-ttf.xibuild b/repo/sdl2-ttf/sdl2-ttf.xibuild new file mode 100644 index 0000000..12cdba8 --- /dev/null +++ b/repo/sdl2-ttf/sdl2-ttf.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="sdl2-ttf" +DESC="A library which allows you to use TrueType fonts in your SDL applications" + +MAKEDEPS="freetype2 mesa sdl2" + +PKG_VER=2.0.18 +SOURCE="https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-$PKG_VER.tar.gz" + +build() { + ./configure \ + + + --prefix=/usr \ + --enable-static + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} + |