summaryrefslogtreecommitdiffstats
path: root/dist/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'dist/debian/control')
-rw-r--r--dist/debian/control33
1 files changed, 33 insertions, 0 deletions
diff --git a/dist/debian/control b/dist/debian/control
new file mode 100644
index 0000000..893044b
--- /dev/null
+++ b/dist/debian/control
@@ -0,0 +1,33 @@
+Source: kbuild
+Section: devel
+Priority: extra
+Maintainer: Torsten Werner <twerner@debian.org>
+Build-Depends: autoconf, automake, byacc, cdbs, cvs, debhelper (>= 5), flex,
+ quilt
+Standards-Version: 3.8.0
+Homepage: http://svn.netlabs.org/kbuild
+Vcs-Svn: https://bollin.googlecode.com/svn/kbuild/trunk
+Vcs-Browser: http://bollin.googlecode.com/svn/kbuild/trunk
+
+Package: kbuild
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: framework for writing simple makefiles for complex tasks
+ The goals of the kBuild framework:
+ - Similar behavior cross all supported platforms.
+ - Flexibility, don't create unnecessary restrictions preventing ad-hoc
+ solutions.
+ - Makefile can very simple to write and maintain.
+ .
+ There are four concepts being tried out in the current kBuild incaration:
+ - One configuration file for a subtree automatically included.
+ - Target configuration templates as the primary mechanism for makefile
+ simplification.
+ - Tools and SDKs for helping out the templates with flexibility.
+ - Non-recursive makefile method by using sub-makefiles.
+ .
+ kBuild does not provide any facilities for checking compiler/library/header
+ configurations, that's not in its scope. If this is important for your
+ project, check out the autoconf tool in the GNU build system. It is possible
+ to use kBuild together with autoconf if you like, but you might just as well
+ use the full GNU package.