17 lines
606 B
Ada
17 lines
606 B
Ada
with Alire.Index.Libhello;
|
|
|
|
package Alire.Index.Hello is
|
|
|
|
Name : constant Project_Name := "hello";
|
|
Repo : constant URL := "git@bitbucket.org:aleteolabs/hello.git";
|
|
|
|
V_1_0_0 : constant Release :=
|
|
Register_Git (Name,
|
|
V ("1.0.0"),
|
|
Repo,
|
|
"8cac0afddc505794ae3e5634745ce0830129d241",
|
|
-- Depends_On ("libhello", At_Least_Within_Major (V ("1.0.0"))));
|
|
Depends_On => At_Least_Within_Major (Libhello.V_1_0_0));
|
|
|
|
end Alire.Index.Hello;
|