Skip to content

Commit 525be4f

Browse files
author
Carlos Une
committed
Init
0 parents  commit 525be4f

File tree

7 files changed

+4674
-0
lines changed

7 files changed

+4674
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/*

F.png

1.11 KB
Loading

LICENSE

+674
Large diffs are not rendered by default.

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# cairo-fortran
2+
3+
This repository contains the libcairo bindings for Fortran from the [gtk-fortran project](https://github.com/vmagnin/gtk-fortran/) available as a separate _fpm_ package.
4+
5+
## Original project and Authors
6+
Origin: [gtk-fortran project](https://github.com/vmagnin/gtk-fortran/)
7+
Authors:
8+
> Vincent MAGNIN, James TAPPIN, Jens HUNGER, Jerry DE LISLE, "gtk-fortran: a GTK+ binding to build Graphical User Interfaces in Fortran", _Journal of Open Source Software,_ 4(34), 1109, 12th January 2019, [https://doi.org/10.21105/joss.01109](https://doi.org/10.21105/joss.01109)
9+
10+
## License
11+
GPLv3
12+
13+
## fpm
14+
To use cairo-fortran within your `fpm` project, add the following to your project `fpm.toml` file:
15+
16+
```toml
17+
[dependencies]
18+
cairo = {git = "https://github.com/brocolis/cairo-fortran" }
19+
```
20+
21+
### Example test1
22+
![test1](F.png)

fpm.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name = "cairo-fortran"
2+
version = "0.1.0"
3+
license = "GPLv3"
4+
author = "The gtk-fortran team"
5+
copyright = "2011-2021 The gtk-fortran team"
6+
maintainer = "Carlos Une <@brocolis>"
7+
homepage = "https://github.com/brocolis/cairo-fortran"
8+
categories = ["bindings", "graphics"]
9+
# keywords = []
10+
11+
[build]
12+
link = "cairo"
13+
auto-executables = true
14+
auto-tests = true
15+
auto-examples = true
16+
17+
[install]
18+
library = false

0 commit comments

Comments
 (0)