From b90baafcdffbcea192ff14161ff80a3dec3f3ede Mon Sep 17 00:00:00 2001 From: Trent Buck Date: Sat, 5 Nov 2005 22:40:18 +0000 Subject: [PATCH] [lice @ debian: Initial Debian package info.] --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 10 ++++++++++ debian/docs | 3 +++ debian/rules | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 83 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5388b4c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +lice (2-1) unstable; urgency=low + + * Initial release Closes: #nnnn (nnnn is the bug number of your ITP) + + -- Trent Buck Sun, 6 Nov 2005 08:45:08 +1100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..454fe09 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: lice +Section: editors +Priority: optional +Maintainer: Trent Buck +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.6.2 + +Package: lice +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, cl-uffi, cl-ncurses +Description: The Lisp Computing Environment (Emacs for Common Lisp) + LiCE is a GNU Emacs clone written entirely in Common Lisp. + . + It has been tested it on CMUCL, SBCL, and Movitz. With a + little work it could probably run on more. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5d989e1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,10 @@ +Debian Copyright Section +======================== + +Upstream Source URL: http://www.emmett.ca/~sabetts/lice/lice +Upstream Author: Shawn Betts +Debian Maintainer: Trent Buck +License: GNU General Public License, Version 2 + +On Debian computer the GPL license is available at +/usr/share/common-licenses/GPL. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..623fe2d --- /dev/null +++ b/debian/docs @@ -0,0 +1,3 @@ +FAQ +README +TODO diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..70b300d --- /dev/null +++ b/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f +pkg := lice +debpkg := $(pkg) +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-files := $(clc-source)/$(pkg) + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp +build: build-stamp +build-stamp: configure-stamp + dh_testdir + touch build-stamp +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs $(clc-systems) $(clc-source) $(clc-files) + dh_install $(pkg).asd $(clc-files) + dh_install "*.lisp" $(clc-files) + dh_link $(clc-files)/$(pkg).asd $(clc-systems)/$(pkg).asd +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_lisp + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb +binary-arch: build install +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure -- 2.11.4.GIT