summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-08-26 19:31:05 +0400
committerIgor Pashev <pashev.igor@gmail.com>2012-08-26 19:31:05 +0400
commit879a1a9d49d0225d14b6d9957cdd36dec23d897e (patch)
treeafd8ba1553f2ce34bbe0ae29114a3c6a89b3abe9
parente46c9ea201b4bad8f4c6d19ee6dfb3537bc9facd (diff)
downloadmake.old-879a1a9d49d0225d14b6d9957cdd36dec23d897e.tar.gz
Added debian dir
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control40
-rw-r--r--debian/copyright39
-rw-r--r--debian/gmake.links2
-rw-r--r--debian/make.docs2
-rw-r--r--debian/make.install4
-rw-r--r--debian/rules8
-rw-r--r--debian/source/format1
9 files changed, 102 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7df58d1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+make (3.82-3) unstable; urgency=low
+
+ * Initial release.
+
+ -- Igor Pashev <pashev.igor@gmail.com> Mon, 02 Jul 2012 16:56:47 +0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3bd7323
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: make
+Section: devel
+Priority: standard
+Maintainer: Igor Pashev <pashev.igor@gmail.com>
+Standards-Version: 3.9.3
+Homepage: http://www.gnu.org/software/make/
+Build-Depends: debhelper (>=9), perl
+
+Package: make
+Section: devel
+Priority: standard
+Suggests: make-doc
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: An utility for Directing compilation.
+ GNU Make is an utility which controls the generation of executables and
+ other target files of a program from the program's source files. It
+ determines automatically which pieces of a large program need to be
+ (re)created, and issues the commands to (re)create them. Make is not
+ limited to programs and executable, it can be applied to any task
+ where a set of target files must be created based on a set of input
+ files, based on dependency and processing rules. Indeed, Make is a
+ general purpose dependency solver.
+
+Package: gmake
+Section: devel
+Priority: optional
+Architecture: any
+Depends: make, ${misc:Depends}
+Description: An utility for Directing compilation (compatibility package)
+ GNU Make is an utility which controls the generation of executables and
+ other target files of a program from the program's source files. It
+ determines automatically which pieces of a large program need to be
+ (re)created, and issues the commands to (re)create them. Make is not
+ limited to programs and executable, it can be applied to any task
+ where a set of target files must be created based on a set of input
+ files, based on dependency and processing rules. Indeed, Make is a
+ general purpose dependency solver.
+ .
+ This package only provides symbolic link from "make" to "gmake"
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4cc929b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: GNU make
+Source: http://www.gnu.org/software/make/
+
+Files: debian/*
+Copyright: 2012 Igor Pashev <pashev.igor@gmail.com>
+License: WTFPL-2
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+
+Files: *
+Copyright: 1997-2010 Free Software Foundation, Inc.
+License: GPL-3+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-3'
diff --git a/debian/gmake.links b/debian/gmake.links
new file mode 100644
index 0000000..2ded358
--- /dev/null
+++ b/debian/gmake.links
@@ -0,0 +1,2 @@
+/usr/bin/make /usr/bin/gmake
+/usr/share/man/man1/make.1.gz /usr/share/man/man1/gmake.1.gz
diff --git a/debian/make.docs b/debian/make.docs
new file mode 100644
index 0000000..ff9f8cf
--- /dev/null
+++ b/debian/make.docs
@@ -0,0 +1,2 @@
+NEWS
+AUTHORS
diff --git a/debian/make.install b/debian/make.install
new file mode 100644
index 0000000..c8333e7
--- /dev/null
+++ b/debian/make.install
@@ -0,0 +1,4 @@
+usr/bin/make
+usr/share/info/make.info*
+usr/share/locale/*
+usr/share/man/man1/make.1
diff --git a/debian/rules b/debian/rules
new file mode 100644
index 0000000..67b37ac
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
+
+override_dh_installdocs:
+ dh_installdocs --link-doc=make
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)