add intial debian/ layout
authorMichael Prokop <mika@grml.org>
Thu, 8 Feb 2007 20:04:27 +0000 (21:04 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 8 Feb 2007 20:04:27 +0000 (21:04 +0100)
Makefile
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/rules [new file with mode: 0755]

index f764eef..4fb6d5e 100644 (file)
--- 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 (file)
index 0000000..51ae4c0
--- /dev/null
@@ -0,0 +1,6 @@
+grml-live (0.1.1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Michael Prokop <mika@grml.org>  Thu,  8 Feb 2007 20:59:14 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..86f4cb3
--- /dev/null
@@ -0,0 +1,16 @@
+Source: grml-live
+Section: grml
+Priority: optional
+Maintainer: Michael Prokop <mika@grml.org>
+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 (file)
index 0000000..d68ade8
--- /dev/null
@@ -0,0 +1,30 @@
+This package was debianized by Michael Prokop <mika@grml.org> on
+Thu,  8 Feb 2007 20:59:14 +0100.
+
+It was downloaded from http://grml.org/
+
+Upstream Author: Michael Prokop <mika@grml.org>
+
+Copyright: (c) 2007++ Michael Prokop <mika@grml.org>
+
+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 <mika@grml.org> and
+is licensed under the GPL, see above.
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..9f05b02
--- /dev/null
@@ -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