Skip to content
Snippets Groups Projects
Commit efe6a517 authored by Chris Cheney's avatar Chris Cheney
Browse files

changed development package name

git-svn-id: http://svn.xiph.org/trunk/ao@1210 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent f6644c82
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = README.Debian changelog control copyright libao0-dev.dirs\
libao0-dev.docs libao0-dev.files libao0-dev.postinst libao0-dev.postrm\
libao0-dev.preinst libao0-dev.prerm libao0.dirs libao0.files \
EXTRA_DIST = README.Debian changelog control copyright libao-dev.dirs\
libao-dev.docs libao-dev.files libao-dev.postinst libao-dev.postrm\
libao-dev.preinst libao-dev.prerm libao0.dirs libao0.files \
libao0.postinst libao0.postrm libao0.preinst libao0.prerm rules
......@@ -5,7 +5,7 @@ Maintainer: Christopher L Cheney <ccheney@debian.org>
Build-Depends: debhelper, libasound1-dev [alpha i386 powerpc sparc], libesd0-dev
Standards-Version: 3.1.1
Package: libao0-dev
Package: libao-dev
Architecture: any
Depends: libao0 (= ${Source-Version}), libc6-dev
Description: Cross Platform Audio Output Library Development
......
usr/lib
usr/lib/ao
usr/include
usr/include/ao
README
TODO
doc/API
doc/DRIVERS
doc/USAGE
doc/WANTED
usr/include/ao/*.h
usr/lib/*.so
usr/lib/*.la
usr/lib/ao/*.la
usr/share/aclocal/ao.m4
#! /bin/sh
# postinst script for libao
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
case "$1" in
configure)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
#! /bin/sh
# postrm script for libao
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 0
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
#! /bin/sh
# preinst script for libao
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <new-preinst> `install'
# * <new-preinst> `install' <old-version>
# * <new-preinst> `upgrade' <old-version>
# * <old-preinst> `abort-upgrade' <new-version>
#
# For details see /usr/share/doc/packaging-manual/
case "$1" in
install|upgrade)
# if [ "$1" = "upgrade" ]
# then
# start-stop-daemon --stop --quiet --oknodo \
# --pidfile /var/run/libao.pid \
# --exec /usr/sbin/libao 2>/dev/null || true
# fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
#! /bin/sh
# prerm script for libao
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <prerm> `remove'
# * <old-prerm> `upgrade' <new-version>
# * <new-prerm> `failed-upgrade' <old-version>
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <deconfigured's-prerm> `deconfigure' `in-favour'
# <package-being-installed> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
remove|upgrade|deconfigure)
# install-info --quiet --remove /usr/info/libao.info.gz
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
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