From 946f2be3f4fdd0e7cf5c9867ff6fa0d348d95ee1 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Mon, 17 Aug 2009 23:30:20 -0600 Subject: [PATCH] package for Debian --- debian/README.Debian | 6 ++++ debian/altos.doc-base.EX | 20 ++++++++++++ debian/changelog | 5 +++ debian/compat | 1 + debian/control | 17 ++++++++++ debian/copyright | 36 +++++++++++++++++++++ debian/dirs | 2 ++ debian/docs | 2 ++ debian/menu | 2 ++ debian/rules | 70 ++++++++++++++++++++++++++++++++++++++++ 10 files changed, 161 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/altos.doc-base.EX create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100644 debian/menu create mode 100755 debian/rules diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 00000000..308febdd --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +altos for Debian +---------------- + + + + -- Bdale Garbee Mon, 17 Aug 2009 23:01:22 -0600 diff --git a/debian/altos.doc-base.EX b/debian/altos.doc-base.EX new file mode 100644 index 00000000..803c08e3 --- /dev/null +++ b/debian/altos.doc-base.EX @@ -0,0 +1,20 @@ +Document: altos +Title: Debian altos Manual +Author: +Abstract: This manual describes what altos is + and how it can be used to + manage online manuals on Debian systems. +Section: unknown + +Format: debiandoc-sgml +Files: /usr/share/doc/altos/altos.sgml.gz + +Format: postscript +Files: /usr/share/doc/altos/altos.ps.gz + +Format: text +Files: /usr/share/doc/altos/altos.text.gz + +Format: HTML +Index: /usr/share/doc/altos/html/index.html +Files: /usr/share/doc/altos/html/*.html diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..d019d060 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +altos (0.0-1) unstable; urgency=low + + * Initial packaging + + -- Bdale Garbee Mon, 17 Aug 2009 23:01:22 -0600 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7f8f011e --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..acfe9f53 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: altos +Section: otherosfs +Priority: extra +Maintainer: Bdale Garbee +Uploaders: Keith Packard +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.1 +Homepage: http://altusmetrum.org/ + +Package: altos +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Altus Metrum firmware and utilities + Firmware and utilities needed to support the TeleMetrum dual-deploy + recording altimeter for high power model rocketry. + . + See http://altusmetrum.org/ for more information. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..62ff91cd --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Bdale Garbee on +Mon, 17 Aug 2009 23:01:22 -0600. + +It was downloaded from git.gag.com. + +Upstream Author(s): + + Keith Packard + Bdale Garbee + +Copyright: + + Copyright © 2009 Keith Packard + +License: + + 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; version 2 of the License. + + 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, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + +The Debian packaging is: + + Copyright (C) 2009 Bdale Garbee + +and is also licensed under the GPL version 2. + +For a complete copy of the license, see `/usr/share/common-licenses/GPL-2'. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 00000000..59c9e8a3 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/altos diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..50bd824b --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/menu b/debian/menu new file mode 100644 index 00000000..7e15c9c8 --- /dev/null +++ b/debian/menu @@ -0,0 +1,2 @@ +?package(altos):needs="X11" section="Applications/Viewers"\ + title="aoview" command="/usr/bin/aoview" diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..785d9d5b --- /dev/null +++ b/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + ./autogen.sh + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/altos install + +# Build architecture-independent files here. +binary-indep: install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure -- 2.30.2