Last active
August 29, 2015 13:57
-
-
Save chergert/9607220 to your computer and use it in GitHub Desktop.
some ideas for fig
This file contains hidden or 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
| # initialize a new automake project in current dir | |
| fig init | |
| # Explicitely set the version ... | |
| fig version 0.1.0 | |
| # add a new library to the project with a gobject | |
| fig add-target --library --shared foobar-1.0 | |
| fig add-gobject foobar-1.0 FooBar | |
| # add a new program to the project | |
| fig add-target --program baz | |
| fig add-dependency baz --library foobar-1.0 | |
| fig add-dependency baz --pkg gio-2.0 | |
| # Bump version, distcheck, post-release bump | |
| fig release --version 0.2.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment