summaryrefslogtreecommitdiffstats
path: root/debian/control
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:21:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:21:30 +0000
commit5fbf8d8592ffd00fcd6f237ab31886936755c882 (patch)
treec02b1d7cb63f2794cb6e24b6ba611badb624d8ac /debian/control
parentAdding upstream version 1:0.1.9998svn3589+dfsg. (diff)
downloadkbuild-5fbf8d8592ffd00fcd6f237ab31886936755c882.tar.xz
kbuild-5fbf8d8592ffd00fcd6f237ab31886936755c882.zip
Adding debian version 1:0.1.9998svn3589+dfsg-1.debian/1%0.1.9998svn3589+dfsg-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control40
1 files changed, 40 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f705531
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: kbuild
+Section: devel
+Priority: optional
+Maintainer: Debian Virtualbox Team <team+debian-virtualbox@tracker.debian.org>
+Uploaders: Ritesh Raj Sarraf <rrs@debian.org>,
+ Gianfranco Costamagna <locutusofborg@debian.org>
+Build-Depends: debhelper-compat (= 13),
+ byacc,
+ flex,
+ libacl1-dev,
+ texinfo,
+ pkg-config
+Standards-Version: 4.6.0
+Rules-Requires-Root: no
+Homepage: https://svn.netlabs.org/kbuild
+Vcs-Browser: https://salsa.debian.org/pkg-virtualbox-team/kbuild
+Vcs-Git: https://salsa.debian.org/pkg-virtualbox-team/kbuild.git
+
+Package: kbuild
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs: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.