From 587846c8ee2ebb4a589fe3de34aef89edcd068fd Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Fri, 13 Jul 2018 15:44:05 +0200 Subject: [PATCH] +mandelbrot ascii --- index/alire-index-mandelbrot_ascii.ads | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 index/alire-index-mandelbrot_ascii.ads diff --git a/index/alire-index-mandelbrot_ascii.ads b/index/alire-index-mandelbrot_ascii.ads new file mode 100644 index 00000000..87e7f151 --- /dev/null +++ b/index/alire-index-mandelbrot_ascii.ads @@ -0,0 +1,18 @@ +package Alire.Index.Mandelbrot_ASCII is + + function Project is new Catalogued_Project + ("Mandelbrot renderer using Unicode glyphs"); + + Repo : constant URL := "https://github.com/mosteo/mandelbrot_ascii.git"; + + Base : constant Release := + Project.Unreleased + (Properties => + Author ("David Given") and + Maintainer ("Alejandro R. Mosteo") and + License (Unknown)); + + package V_1 is new Project_Release + (Base.Replacing (Git (Repo, "53efca17cdcc2d42c3a87e4344fa782fbeac906e"))); + +end Alire.Index.Mandelbrot_ASCII;