Signed-off-by: Michael Grzeschik <m.grzesc...@pengutronix.de>
---
 rules/sdl2-test.in  |  1 +
 rules/sdl2-ttf.in   | 12 ++++++++++
 rules/sdl2-ttf.make | 58 +++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 71 insertions(+)
 create mode 100644 rules/sdl2-ttf.in
 create mode 100644 rules/sdl2-ttf.make

diff --git a/rules/sdl2-test.in b/rules/sdl2-test.in
index f822c965c..ba1e84a44 100644
--- a/rules/sdl2-test.in
+++ b/rules/sdl2-test.in
@@ -4,6 +4,7 @@ config SDL2_TEST
        tristate
        prompt "SDL2 test"
        select SDL2
+       select SDL2_TTF
        help
          Simple DirectMedia Layer is a cross-platform multimedia
          library designed to provide low level access to audio,
diff --git a/rules/sdl2-ttf.in b/rules/sdl2-ttf.in
new file mode 100644
index 000000000..f1386d0cf
--- /dev/null
+++ b/rules/sdl2-ttf.in
@@ -0,0 +1,12 @@
+## SECTION=multimedia_sdl
+
+config SDL2_TTF
+       tristate
+       select SDL2
+       select FREETYPE
+       prompt "SDL2 ttf                       "
+       help
+         This is a sample library which allows you to use TrueType
+         fonts in your SDL applications. It comes with an example
+         program "showfont" which displays an example string for a
+         given TrueType font file.
diff --git a/rules/sdl2-ttf.make b/rules/sdl2-ttf.make
new file mode 100644
index 000000000..5f52f96b1
--- /dev/null
+++ b/rules/sdl2-ttf.make
@@ -0,0 +1,58 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2018 by Michael Grzeschik <m...@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_SDL2_TTF) += sdl2-ttf
+
+#
+# Paths and names
+#
+SDL2_TTF_VERSION       := 2.0.14
+SDL2_TTF_MD5           := e53c05e1e7f1382c316afd6c763388b1
+SDL2_TTF               := SDL2_ttf-$(SDL2_TTF_VERSION)
+SDL2_TTF_SUFFIX        := tar.gz
+SDL2_TTF_URL           := 
https://www.libsdl.org/projects/SDL_ttf/release/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
+SDL2_TTF_SOURCE        := $(SRCDIR)/$(SDL2_TTF).$(SDL2_TTF_SUFFIX)
+SDL2_TTF_DIR           := $(BUILDDIR)/$(SDL2_TTF)
+SDL2_TTF_LICENSE       := unknown
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+SDL2_TTF_CONF_TOOL     := autoconf
+
+ifdef PTXCONF_SDL2_PULSEAUDIO
+SDL2_TTF_LDFLAGS       := \
+       -Wl,-rpath-link,$(SYSROOT)/usr/lib/pulseaudio
+endif
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/sdl2-ttf.targetinstall:
+       @$(call targetinfo)
+
+       @$(call install_init, sdl2-ttf)
+       @$(call install_fixup, sdl2-ttf,PRIORITY,optional)
+       @$(call install_fixup, sdl2-ttf,SECTION,base)
+       @$(call install_fixup, sdl2-ttf,AUTHOR,"Michael Grzeschik 
<m...@pengutronix.de>")
+       @$(call install_fixup, sdl2-ttf,DESCRIPTION,missing)
+
+       @$(call install_lib, sdl2-ttf, 0, 0, 0644, libSDL2_ttf-2.0)
+
+       @$(call install_finish, sdl2-ttf)
+
+       @$(call touch)
+
+# vim: syntax=make
-- 
2.18.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

Reply via email to