summaryrefslogtreecommitdiff
path: root/examples/ipk_packaging/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ipk_packaging/SConstruct')
-rw-r--r--examples/ipk_packaging/SConstruct15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/ipk_packaging/SConstruct b/examples/ipk_packaging/SConstruct
new file mode 100644
index 00000000..c8c54ebd
--- /dev/null
+++ b/examples/ipk_packaging/SConstruct
@@ -0,0 +1,15 @@
+prog = Install( '/bin/', Program( 'main.c') )
+
+Package( projectname = 'foo',
+ version = '1.2.3',
+ architecture = 'arm',
+ x_ipk_maintainer = 'user <user@somehost.net>',
+ x_ipk_priority = 'optional',
+ source_url = 'http://ftp.gnu.org/foo-1.2.3.tar.gz',
+ x_ipk_depends = 'libc6, grep',
+ type = 'ipk',
+ summary = 'bla bla bla',
+ x_ipk_section = 'extras',
+ description = 'this should be reallly really long',
+ source = [ prog ],
+ )