-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5b40c7
commit 3ae57d1
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
description = "Ada Web Server" | ||
website = "https://github.com/adacore/aws" | ||
name = "aws" | ||
version = "24.0.0" | ||
authors = ["AdaCore"] | ||
licenses = "GPL-3.0-only WITH GCC-exception-3.1" | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau"] | ||
project-files = ["install_dir/share/gpr/aws.gpr"] | ||
tags = ["aws", "web", "server", "http", "https", "soap", "wsdl", "ssl"] | ||
|
||
# Since the AWS project doesn't build alone with just gprbuild we build and | ||
# install with the Makefile from post-fetch actions. | ||
[[actions]] | ||
type = "post-fetch" | ||
command = ["make", "setup", "ZLIB=false", "DEMOS=false", | ||
"LAL=false", "XMLADA=false", "SOCKET=openssl", "prefix=install_dir", | ||
"PRJ_BUILD=Release"] | ||
[[actions]] | ||
type = "post-fetch" | ||
command = ["make", "all", "ENABLE_SHARED=false"] | ||
[[actions]] | ||
type = "post-fetch" | ||
command = ["make", "install-lib-native", "install-tools-native", "--jobs=1", "ENABLE_SHARED=false"] | ||
|
||
[[depends-on]] | ||
xmlada = "~24.0.0" | ||
gnatcoll = "~24.0.0" | ||
make = "*" | ||
gnat = ">=12" | ||
openssl = "*" | ||
|
||
[origin] | ||
# The archive is built with git archive to include templates-parser sub-module: | ||
# $ git-archive-all --prefix=aws-24.0.0 aws-24.0.0-with-templates-parser.zip | ||
url="https://github.com/AdaCore/aws/releases/download/v24.0.0/aws-24.0.0-with-templates-parser.zip" | ||
hashes=['sha512:2b75fe6dc1bf676b6bd949354e352a94c918c109f8065179634ccba6e17329ba48163deb4bceb506eaf1e2a1446378bbe3439ea007a7dc5dd77286e56b497c4c'] |