Skip to content
Snippets Groups Projects
Commit a1790b59 authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

convert to dh-lisp

parent 27bc69ee
No related branches found
No related tags found
No related merge requests found
cl-base64 (3.3.3-2) unstable; urgency=low
* Convert to dh-lisp
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 03 Aug 2009 10:21:24 -0600
cl-base64 (3.3.3-1) unstable; urgency=low
* New upstream
......
......@@ -2,6 +2,7 @@ Source: cl-base64
Section: lisp
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: dh-lisp
Build-Depends: debhelper (>= 7.0.0)
Standards-Version: 3.8.2.0
Vcs-Git: git://git.b9.com/cl-base64.git
......@@ -9,7 +10,7 @@ Homepage: http://files.b9.com/cl-base64/
Package: cl-base64
Architecture: all
Depends: common-lisp-controller (>= 3.47), cl-kmrcl
Depends: ${misc:Depends}, cl-kmrcl
Description: Common Lisp package to encode and decode base64 with URI support
This package provides highly optimized base64 encoding and decoding.
Besides conversion to and from strings, integer conversions are supported.
......
#! /bin/sh
set -e
LISP_PKG=cl-base64
case "$1" in
configure)
register-common-lisp-source ${LISP_PKG}
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
#! /bin/sh
set -e
LISP_PKG=cl-base64
case "$1" in
remove|upgrade|deconfigure)
unregister-common-lisp-source ${LISP_PKG}
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
#!/usr/bin/make -f
pkg := cl-base64
debpkg := cl-base64
pkg := cl-base64
debpkg := cl-base64
clc-source := usr/share/common-lisp/source
clc-systems := usr/share/common-lisp/systems
clc-base64 := $(clc-source)/$(pkg)
clc-files := $(clc-source)/$(pkg)
doc-dir := usr/share/doc/$(debpkg)
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
touch build-stamp
build:
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
rm -f debian/cl-base64.postinst.* debian/cl-base64.prerm.*
dh_clean
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs $(clc-systems) $(clc-base64)
dh_install *.asd $(shell echo *.lisp) $(clc-base64)
dh_link $(clc-base64)/cl-base64.asd $(clc-systems)/cl-base64.asd
# Build architecture-independent files here.
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installdocs -i
dh_installchangelogs -i
dh_strip -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
binary-arch: build install
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary install configure
dh_installdirs
dh_install $(pkg).asd $(clc-files)
dh_install *.lisp $(clc-files)
binary-indep: install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_lisp
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary-arch:
binary: binary-indep
.PHONY: build clean binary-indep binary-arch binary install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment