56 lines
1.8 KiB
TOML
56 lines
1.8 KiB
TOML
description = "Portable package for producing dynamically PDF documents"
|
|
name = "apdf"
|
|
version = "6.0.0"
|
|
authors = ["Gautier de Montmollin"]
|
|
website = "https://apdf.sourceforge.io/"
|
|
licenses = "MIT"
|
|
maintainers = ["gdemont@hotmail.com"]
|
|
maintainers-logins = ["zertovitch", "Fabien-Chouteau"]
|
|
project-files = ["pdf_out_gnat_w_gid.gpr"]
|
|
executables = ["pdf_out_demo", "koch_curve", "sierpinski_arrowhead_curve"]
|
|
tags = ["pdf", "adobe"]
|
|
|
|
long-description = """
|
|
|
|
**PDF_Out** is an Ada package for producing easily and automatically PDF files, from an Ada program, with text, vector graphics and raster graphics.
|
|
|
|

|
|
|
|
* Ideal for the dynamic production of reports, invoices, tickets, charts, maps etc.
|
|
* Vector graphics
|
|
* Inclusion of JPEG images
|
|
* Object oriented
|
|
* Task safe
|
|
* Endian-neutral
|
|
* Multi-platform, but native code build
|
|
* Standalone (no dependency on other libraires, bindings, etc.; no extra component needed for running)
|
|
* Unconditionally portable code: OS-, CPU-, compiler- independent code
|
|
* Pure Ada 95: this package can be used in projects in Ada 95, Ada 2005, Ada 2012 and later language versions
|
|
* Free, open-source
|
|
|
|
The creation of a PDF file is as simple as this small procedure:
|
|
|
|
```ada
|
|
with PDF_Out;
|
|
|
|
procedure Small_Demo is
|
|
pdf : PDF_Out.PDF_Out_File;
|
|
begin
|
|
pdf.Create ("small.pdf");
|
|
pdf.Put_Line ("This is a very small demo for PDF_Out...");
|
|
pdf.Close;
|
|
end Small_Demo;
|
|
```
|
|
|
|
"""
|
|
|
|
[gpr-externals]
|
|
PDF_Build_Mode = ["Debug", "Fast"]
|
|
|
|
[[depends-on]]
|
|
gid = ">=9.0.0"
|
|
|
|
[origin]
|
|
url = "https://sourceforge.net/projects/apdf/files/apdf_006.zip"
|
|
hashes = ["sha512:7c3ce4e9fd288aeedcf618d138d2d4a517e4163df76f8fd8b8db3ddcc7cdcb9b41791c77dcdbd3427c0fb6e4e6ea37ee2a72f1c0bc1ab36d37541d7c3a4e67b9"]
|