This commit is contained in:
Alejandro R Mosteo
2018-05-08 11:31:20 +02:00
parent 50f4e300d1
commit 09504b4078
2 changed files with 22 additions and 4 deletions
+8 -4
View File
@@ -1,3 +1,5 @@
with Alire.Index.Libgsl;
package Alire.Index.Agpl is
function Project is new Catalogued_Project
@@ -7,11 +9,13 @@ package Alire.Index.Agpl is
Base : constant Release :=
Project.Unreleased
(Properties =>
(Dependencies =>
Libgsl.Project.Current,
Properties =>
GPR_Scenario ("Agpl_Include_Concorde", "True" or "False") and
GPR_Scenario ("Agpl_Include_Db", "True" or "False") and
GPR_Scenario ("Agpl_Include_Boost", "True" or "False") and
GPR_Scenario ("Agpl_Include_PngIO", "True" or "False") and
GPR_Scenario ("Agpl_Include_Db", "True" or "False") and
GPR_Scenario ("Agpl_Include_Boost", "True" or "False") and
GPR_Scenario ("Agpl_Include_PngIO", "True" or "False") and
Author ("alejandro@mosteo.com") and
License (LGPL_3_0));
+14
View File
@@ -0,0 +1,14 @@
package Alire.Index.Libgsl is
function Project is new Catalogued_Project
("The GNU Scientific Library (GSL)");
Base : constant Release := Project.Unreleased;
package V_0 is new Released
(Base
.Replacing
(Native ((Debian | Ubuntu => Packaged_As ("libgsl-dev"),
others => Unavailable))));
end Alire.Index.Libgsl;