diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/README | 7 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 16 | ||||
| -rw-r--r-- | debian/copyright | 28 | ||||
| -rw-r--r-- | debian/cpuinfo.manpages | 1 | ||||
| -rw-r--r-- | debian/cpuinfo.substvars | 2 | ||||
| -rwxr-xr-x | debian/rules | 13 |
7 files changed, 68 insertions, 0 deletions
diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..70c605a --- /dev/null +++ b/debian/README @@ -0,0 +1,7 @@ +The Debian Package cpuinfo +---------------------------- + +This is just a hobby project. Not sure if everything meets the debian +policy though. + + -- Paul Buetow <paul@buetow.org> Sun, 08 Apr 2012 15:23:53 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4988508 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: cpuinfo +Section: net +Priority: optional +Maintainer: Paul Buetow <paul@buetow.org> +Build-Depends: perl, make +Standards-Version: 3.9.2 +Homepage: http://cpuinfo.buetow.org +Vcs-Git: git://git.bueto.org/cpuinfo +Vcs-Browser: http://web.buetow.org/git/?p=cpuinfo.git;a=summary + +Package: cpuinfo +Architecture: all +Depends: ${shlibs:Depends} +Description: A tiny AWK script to print out CPU infos. + This is a tiny AWK script to print out CPU infos. All infos are gathered from + the procfs. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d32a464 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: cpuinfo +Source: http://cpuinfo.buetow.org + +Files: * +Copyright: 2012 Paul Buetow <paul@buetow.org> +License: GPL-3.0+ + +Files: debian/* +Copyright: 2012 Paul Buetow <paul@buetow.org> +License: GPL-3.0+ + +License: GPL-3.0+ + 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 package 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 systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/cpuinfo.manpages b/debian/cpuinfo.manpages new file mode 100644 index 0000000..fd544a6 --- /dev/null +++ b/debian/cpuinfo.manpages @@ -0,0 +1 @@ +docs/cpuinfo.1 diff --git a/debian/cpuinfo.substvars b/debian/cpuinfo.substvars new file mode 100644 index 0000000..54b6fa4 --- /dev/null +++ b/debian/cpuinfo.substvars @@ -0,0 +1,2 @@ +shlibs:Depends= +misc:Depends=gawk diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b760bee --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ |
