summaryrefslogtreecommitdiff
path: root/repo/sdl2-ttf/sdl2-ttf.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/sdl2-ttf/sdl2-ttf.xibuild')
-rw-r--r--repo/sdl2-ttf/sdl2-ttf.xibuild23
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
+}
+