Project

packmule

0.0
No commit activity in last 3 years
No release in over 3 years
Packmule makes packaging projects into archives easier than ever.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.1
~> 0.1
 Project Readme

Packmule

Packmule makes packaging projects easy, like really easy.

Setting up Packmule

Create a file called Packfile in your projects directory and place the following inside it:

package-as: MyProject
formats:
  - zip
  - tar.gz
ignore:
  - .DS_Store
  - badfile.bad
  - logs/
  - assets/*.psd
commands:
  - date > build-date.txt

Now all you need to do is run packmule pack --version 1.0 inside the directory and your your project is packaged into MyProject-1.0.zip and MyProject-1.0.tar.gz.

The Packfile

The Packfile is a YAML file and contains the config options for Packmule when packaging the directory.

Packmule supports the following archive formats:

  • zip
  • tar
  • tar.gz
  • tar.bz2

License

Packmule is licensed uner the GPL v3-only license.