Skip to content

Instantly share code, notes, and snippets.

@chergert
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save chergert/9607220 to your computer and use it in GitHub Desktop.

Select an option

Save chergert/9607220 to your computer and use it in GitHub Desktop.
some ideas for fig
# 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