From e524ebaccb2f2c855c91f441e8f425eb24b9b9f4 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 2 May 2008 23:19:47 -0600 Subject: [PATCH] fold in Debian packaging goo --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 12 +++++++++++ debian/copyright | 25 ++++++++++++++++++++++ debian/dirs | 1 + debian/docs | 3 +++ debian/rules | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 102 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/dirs create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f36c3eb --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +as31 (2.3.1-1) unstable; urgency=low + + * Fresh (re-)packaging for Debian + + -- Bdale Garbee Fri, 02 May 2008 23:08:35 -0600 + 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..ce782e1 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: as31 +Section: devel +Priority: optional +Maintainer: Bdale Garbee +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.3 + +Package: as31 +Architecture: any +Depends: ${shlibs:Depends} +Description: Intel 8031/8051 assembler + This is a fast, simple, easy to use Intel 8031/8051 assembler. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..59e6850 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Bdale Garbee on +Wed, 30 Apr 2008 20:18:40 -0700. + +It was downloaded from + + +Upstream Authors: + Ken Stauffer + Paul Stoffregen + Alexander 'E-Razor' Krause + +Copyright: + + Copyright (C) 1989 by Ken Stauffer + +License: + + AS31 is Free Software, provided under the BSD license. + + AS31 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. + +The Debian packaging is (C) 2008, Bdale Garbee and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..e772481 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/bin diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..6f83607 --- /dev/null +++ b/debian/docs @@ -0,0 +1,3 @@ +AUTHORS +NEWS +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9e498b0 --- /dev/null +++ b/debian/rules @@ -0,0 +1,54 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + ./configure --prefix=/usr + 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) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/as31 install + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman as31/as31.1 + 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 configure -- 2.30.2