From 44e1c953ee9ca54572ff5f25d83923e8e43d9783 Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Sun, 10 Jun 2018 13:02:47 +0200 Subject: [PATCH] +pdf_out --- index/alire-index-pdf_out.ads | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 index/alire-index-pdf_out.ads diff --git a/index/alire-index-pdf_out.ads b/index/alire-index-pdf_out.ads new file mode 100644 index 00000000..7bcc04d7 --- /dev/null +++ b/index/alire-index-pdf_out.ads @@ -0,0 +1,27 @@ +package Alire.Index.PDF_Out is + + function Project is new Catalogued_Project + ("Standalone, portable package for producing dynamically PDF documents"); + + Repo : constant URL := "https://github.com/svn2github/pdf_out.git"; + + Base : constant Release := + Project.Unreleased + (Properties => + Author ("Gautier de Montmollin") and + Website ("https://sourceforge.net/projects/apdf") and + License (MIT)); + + package V_1_0_0_RC4 is new Project_Release + (Base + .Replacing (Git (Repo, "9f2d3adbc453e03fce88646d80d2ed9c9a58b32b")) + .Extending + (Properties => + Project_File ("pdf_out_gnat.gpr") and + + Executable ("img2pdf") and + Executable ("page_test") and + Executable ("pdf_out_demo") and + Executable ("validation_test"))); + +end Alire.Index.PDF_Out;