--- alac-decoder-0.2.0.orig/debian/changelog +++ alac-decoder-0.2.0/debian/changelog @@ -0,0 +1,35 @@ +alac-decoder (0.2.0-0ubuntu2) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:12:12 +0000 + +alac-decoder (0.2.0-0ubuntu1) quantal; urgency=low + + * New upstream release (LP: #803945). + * Update standards version to 3.9.3. + * Add ${misc:Depends} to dependencies. + * Update build structure in debian/rules. + + -- Logan Rosen Thu, 21 Jun 2012 09:16:08 -0400 + +alac-decoder (0.1.3-0ubuntu3) jaunty; urgency=low + + * debian/control: + - Removed scons as a build dependency because it wasn't used in the build (LP: #208031) + - Bumped standards version to 3.8.0 + - Added Homepage Field + + -- Robert Rittenhouse Tue, 16 Dec 2008 17:19:08 -0500 + +alac-decoder (0.1.3-0ubuntu2) intrepid; urgency=low + + * debian/control: Fix missing Debian Maintainer field (LP: #230350) + + -- Saïvann Carignan Thu, 15 May 2008 08:59:53 -0400 + +alac-decoder (0.1.3-0ubuntu1) feisty; urgency=low + + * Initial release. + + -- Lukas Fittl Sat, 25 Nov 2006 20:58:34 +0100 --- alac-decoder-0.2.0.orig/debian/compat +++ alac-decoder-0.2.0/debian/compat @@ -0,0 +1 @@ +5 --- alac-decoder-0.2.0.orig/debian/control +++ alac-decoder-0.2.0/debian/control @@ -0,0 +1,14 @@ +Source: alac-decoder +Section: sound +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Lukas Fittl +Build-Depends: debhelper (>= 5.0.0) +Standards-Version: 3.9.3 +Homepage: http://craz.net/programs/itunes/alac.html + +Package: alac-decoder +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Apple Lossless audio codec decoder + A simple decoder for the Apple Lossless audio codec. --- alac-decoder-0.2.0.orig/debian/copyright +++ alac-decoder-0.2.0/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Lukas Fittl on +Sat, 25 Nov 2006 21:05:21 +0100 + +It was downloaded from http://craz.net/programs/itunes/ + +Upstream Author: David Hammerton + +Copyright: Copyright (c) 2005 David Hammerton + +License: + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. --- alac-decoder-0.2.0.orig/debian/rules +++ alac-decoder-0.2.0/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + rm -f build-stamp + + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + mkdir -p $(CURDIR)/debian/alac-decoder/usr/bin + install alac $(CURDIR)/debian/alac-decoder/usr/bin/alac-decoder + +binary-indep: + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdocs -a + dh_installchangelogs -a + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install