diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-19 09:21:34 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-19 09:21:34 +0000 |
commit | e986a42e0cf4a23f0c7e22673432ca4ced000ca4 (patch) | |
tree | a4fd9464af4329277055e0b2cab83b8057b84ade /debian/control | |
parent | 24f4443efa2909f1f68801758979a0c2b7172566 (diff) | |
download | busybox-w32-e986a42e0cf4a23f0c7e22673432ca4ced000ca4.tar.gz busybox-w32-e986a42e0cf4a23f0c7e22673432ca4ced000ca4.tar.bz2 busybox-w32-e986a42e0cf4a23f0c7e22673432ca4ced000ca4.zip |
Added support for building debian packages.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@657 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 000000000..4cc8634e9 --- /dev/null +++ b/debian/control | |||
@@ -0,0 +1,46 @@ | |||
1 | Source: busybox | ||
2 | Priority: optional | ||
3 | Maintainer: Erik Andersen <andersee@debian.org> | ||
4 | Build-Depends: debhelper (>= 2.0.80) | ||
5 | Standards-Version: 3.1.1 | ||
6 | |||
7 | Package: busybox | ||
8 | Architecture: any | ||
9 | Depends: ${shlibs:Depends} | ||
10 | Conflicts: binutils, bsdutils, console-tools, cpio, debianutils, dnsutils, dpkg, fbset, fdflush, fileutils, grep, gzip, hostname, modutils, mount, netbase, procps, psmisc, sed, sharutils, shellutils, sysklogd, sysvinit, tar, textutils, update, util-linux | ||
11 | Replaces: dpkg, netbase | ||
12 | Section: utils | ||
13 | Description: Tiny utilities for the debian-installer and for embedded systems. | ||
14 | BusyBox combines tiny versions of many common UNIX utilities into a single | ||
15 | small executable. It provides minimalist replacements for the most common | ||
16 | utilities you would usually find on your desktop system (i.e. ls, cp, mv, | ||
17 | mount, tar, etc). The utilities in BusyBox generally have fewer options than | ||
18 | their full-featured GNU cousins; however, the options that are included | ||
19 | provide the expected functionality and behave very much like their GNU | ||
20 | counterparts. | ||
21 | . | ||
22 | BusyBox is used by the debian-installer. Installing BusyBox onto your Debian | ||
23 | system is not recommended, unless you are intended to make a very small embedded | ||
24 | system. Chances are good that for embedded systems, you will want to recompile | ||
25 | to only include the tools and utilities you wish to include. | ||
26 | |||
27 | Package: busybox-static | ||
28 | Architecture: any | ||
29 | Depends: ${shlibs:Depends} | ||
30 | Section: shells | ||
31 | Description: Provides a stand alone rescue shell with tons of builtin utilities. | ||
32 | BusyBox combines tiny versions of many common UNIX utilities into a single | ||
33 | small executable. It provides minimalist replacements for the most common | ||
34 | utilities you would usually find on your desktop system (i.e. ls, cp, mv, | ||
35 | mount, tar, etc). The utilities in BusyBox generally have fewer options than | ||
36 | their full-featured GNU cousins; however, the options that are included | ||
37 | provide the expected functionality and behave very much like their GNU | ||
38 | counterparts. | ||
39 | . | ||
40 | BusyBox-static provides you with a statically linked simple stand alone shell | ||
41 | that provides all the utilities available in BusyBox. This package is | ||
42 | intended to be used as a rescue shell, in the event that you screw up your | ||
43 | system. Invoke "busybox sh" and you have a standalone shell ready to save | ||
44 | your system from certain destruction. Invoke "busybox", and it will list the | ||
45 | available builtin commands. | ||
46 | |||