Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libao
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
libao
Commits
b4631daf
Commit
b4631daf
authored
23 years ago
by
Chris Cheney
Browse files
Options
Downloads
Patches
Plain Diff
One last time... (I hope)
git-svn-id:
http://svn.xiph.org/trunk/ao@2593
0101bb08-14d6-0310-b084-bc0e0c8e3800
parent
1638846d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+1
-1
1 addition, 1 deletion
debian/changelog
debian/control
+1
-1
1 addition, 1 deletion
debian/control
debian/rules
+22
-3
22 additions, 3 deletions
debian/rules
with
24 additions
and
5 deletions
debian/changelog
+
1
−
1
View file @
b4631daf
...
...
@@ -2,6 +2,7 @@ libao (0.8.2-1) unstable; urgency=low
* New upstream.
* Changed to building alsa 0.9.x plugin instead of obsolete 0.5.x (Closes: #103787)
* added autotools target (config.* updater) to rules
-- Christopher L Cheney <ccheney@debian.org> Tue, 11 Dec 2001 23:00:00 -0600
...
...
@@ -58,5 +59,4 @@ libao (0.5.0-1) unstable; urgency=low
Local variables:
mode: debian-changelog
add-log-mailing-address "ccheney@debian.org"
End:
This diff is collapsed.
Click to expand it.
debian/control
+
1
−
1
View file @
b4631daf
...
...
@@ -2,7 +2,7 @@ Source: libao
Section: libs
Priority: optional
Maintainer: Christopher L Cheney <ccheney@debian.org>
Build-Depends: debhelper (>> 3.0.0), libarts-dev, libasound2-dev, libesd0-dev
Build-Depends: debhelper (>> 3.0.0), libarts-dev, libasound2-dev, libesd0-dev
, autotools-dev, devscripts
Standards-Version: 3.5.6.0
Package: libao2
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
22
−
3
View file @
b4631daf
...
...
@@ -8,13 +8,17 @@
# This is the debhelper compatability version to use.
export DH_COMPAT=3
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
# If compiling cvs version change to ./autogen.sh --prefix=/usr
./configure --prefix=/usr
./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
--prefix=/usr
touch configure-stamp
...
...
@@ -26,7 +30,22 @@ build-stamp:
touch build-stamp
clean:
autotools:
OLDDATESUB=`./config.sub -t | tr -d -` ;\
OLDDATEGUESS=`./config.guess -t | tr -d -` ;\
NEWDATESUB=`/usr/share/misc/config.sub -t | tr -d -` ;\
NEWDATEGUESS=`/usr/share/misc/config.guess -t | tr -d -` ;\
if [ $$OLDDATESUB -lt $$NEWDATESUB -o \
$$OLDDATEGUESS -lt $$NEWDATEGUESS ]; then \
dch -a -p "GNU config automated update: config.sub\
($$OLDDATESUB to $$NEWDATESUB), config.guess\
($$OLDDATEGUESS to $$NEWDATEGUESS)" ;\
cp -f /usr/share/misc/config.sub config.sub ;\
cp -f /usr/share/misc/config.guess config.guess ;\
echo WARNING: GNU config scripts updated from master copies 1>&2 ;\
fi
clean: autotools
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
...
...
@@ -71,4 +90,4 @@ binary-arch: build install
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
.PHONY:
autotools
build clean binary-indep binary-arch binary install configure
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment