diff --git a/recipes/sdl/recipe.toml b/recipes/sdl/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..cd55f3934b435b8166eec19d75929dd1ff9c0482
--- /dev/null
+++ b/recipes/sdl/recipe.toml
@@ -0,0 +1,23 @@
+[source]
+tar = "https://www.libsdl.org/release/SDL-1.2.15.tar.gz"
+patches = [
+    "redox.patch"
+]
+script = "./autogen.sh"
+
+[build]
+template = "custom"
+dependencies = [
+    "liborbital"
+]
+script = """
+COOKBOOK_CONFIGURE_FLAGS+=(
+    --disable-pulseaudio
+    --disable-video-x11
+    --disable-loadso
+    --enable-redoxaudio
+    --enable-clock_gettime
+    --enable-video-orbital
+)
+cookbook_configure
+"""