From 91b520376ef6d54d80ed359ec114fb85cb35a0bf Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 8 Feb 2007 21:04:27 +0100 Subject: [PATCH] add intial debian/ layout --- Makefile | 3 +++ debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 16 ++++++++++++++++ debian/copyright | 30 +++++++++++++++++++++++++++++ debian/rules | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 114 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/Makefile b/Makefile index f764eef..4fb6d5e 100644 --- a/Makefile +++ b/Makefile @@ -24,3 +24,6 @@ man-stamp: grml-live.txt clean: rm -rf grml-live.html grml-live.xml grml-live.8 html-stamp man-stamp + +online: + scp grml-live.html grml:/var/www/grml/grml-live/index.html diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..51ae4c0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +grml-live (0.1.1) unstable; urgency=low + + * Initial release. + + -- Michael Prokop Thu, 8 Feb 2007 20:59:14 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..86f4cb3 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: grml-live +Section: grml +Priority: optional +Maintainer: Michael Prokop +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 +S-X-Vcs-Hg: http://hg.grml.org/grml-live + +Package: grml-live +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, zsh +Description: build scripts for creating grml live cd + This package provides build scripts for creating + a grml live cd. + . + Homepage: http://grml.org/grml-live/ diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d68ade8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Michael Prokop on +Thu, 8 Feb 2007 20:59:14 +0100. + +It was downloaded from http://grml.org/ + +Upstream Author: Michael Prokop + +Copyright: (c) 2007++ Michael Prokop + +License: + + This package 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 2 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, Michael Prokop and +is licensed under the GPL, see above. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9f05b02 --- /dev/null +++ b/debian/rules @@ -0,0 +1,58 @@ +#!/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 + +build: build-stamp + +build-stamp: + dh_testdir + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs usr/sbin + + # Add here commands to install the package into debian/grml-live. + install ... debian/grml-live/usr/sbin/ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- 2.1.4