From 2ca16b64ac00ce6375e3828d334979e5b7abf098 Mon Sep 17 00:00:00 2001 From: Tomas Touceda Date: Tue, 21 Jun 2011 23:57:11 -0300 Subject: First part of makethppackage Creates its metadata based on a config file. This still needs a sanity check. --- samples/example-thp-package.cfg | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 samples/example-thp-package.cfg (limited to 'samples') diff --git a/samples/example-thp-package.cfg b/samples/example-thp-package.cfg new file mode 100644 index 0000000..1c69661 --- /dev/null +++ b/samples/example-thp-package.cfg @@ -0,0 +1,18 @@ +format_version = 1 + +package_name = "test_package" +package_version = "0.0.1-1" +package_version_tuple = [0,0,1,1] +# A list of tuples (file_relative_path, is_config) +files = [ ("file1", False), + ("file2", False), + ("directory/file3", True) ] + +additional_files = [ "add_file1", "add_file2" ] +install_order = 50 +options = { "cycle-install" : False } +platform = { "os" : "GNU/Linux", + "arch" : "x86" } +require_features = [ "pythonscripts" ] +require_packages = [] +scripts = { "preinst" : "/some/path" } -- cgit v1.2.3