debian/0000755000000000000000000000000012200013150007146 5ustar debian/aliki_32x32.xpm0000644000000000000000000000307012015042303011634 0ustar /* XPM */ static char *aliki_32x32[] = { /* columns rows colors chars-per-pixel */ "32 32 22 1 ", " c #0169C7", ". c #0268C7", "X c #0167C8", "o c #0168C8", "O c #0169C8", "+ c #0168C9", "@ c #0169C9", "# c #0268C8", "$ c #0269C8", "% c #0268C9", "& c #0269C9", "* c #016AC8", "= c #016AC9", "- c #026AC9", "; c #0168CA", ": c #0169CA", "> c #0169CB", ", c #0269CA", "< c #0269CB", "1 c #016ACA", "2 c #026ACA", "3 c None", /* pixels */ "33333333333333333333333333333333", "333333o3333333333333333333333333", "33333oo3333333333333333333333333", "3333322o333333333333333333333333", "33333*oo333333333333333333333333", "33333222333333333333333333333333", "33333232333333333333333333333333", "33333232333333333333333333333333", "3333oo32333333333333333333333333", "3333223o333333333333333333333333", "3333oo3oo333323332333233333333o3", "3333233*o3333o333o333o3333333323", "3333233323333o3332333o3333333323", "33332333233332333333323333333333", "333323332333323333333o3333333333", "3332*33323333o333333323333333333", "333oo3332233323332333233332333o3", "33323333oo333o333o333o3332o33323", "3332333332333o33323332333*3333*3", "33323333323332333o333o332*333323", "3332ooo*223332333o333o33o3333323", "33o2*2222*333o333233323o23333323", "3322222222333233323332oo333333*3", "33o*333332o33o333o333o2*33333323", "332333333o233o333233322o33333323", "33233333332332333o333o32o3333323", "33o3333333o332333o333o33233333*3", "3323333333233o3332333233o2333323", "32o3333333233o3332333o333*333323", "3o233333332*32333o33323332o33323", "32o33333331o32333o333o3333o233*3", "33333333333333333333333333333333" }; debian/aliki-rt.10000644000000000000000000000355612015042303010763 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH ALIKI-RT 1 "July 26, 2011" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME \fBaliki-rt\fP \- Measurement tool for Impulse Responses .SH SYNOPSIS .B aliki-rt .SH DESCRIPTION This manual page documents briefly the \fBaliki-rt\fP program. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBaliki-tr\fP is started by the main program (aliki) if an audio interface is requested on the the command line (\-A or \-J). The two parts communicate via shared memory. The main reason for this separation is to avoid JACK locking all the memory blocks used by the processing code. These could be quite large, there is no need to lock them, and doing so could easily deplete physical memory on some systems. .PP For more complete introduction to this method, see http://kokkinizita.linuxaudio.org/linuxaudio/downloads/aliki-manual.pdf .SH OPTIONS This program takes no arguments .TP .SH SEE ALSO .BR jackd(1), .BR aliki(1). .br .SH AUTHOR This manual page was written by Jaromír Mikeš , for the Debian project (but may be used by others). debian/source/0000755000000000000000000000000012015042303010454 5ustar debian/source/format0000644000000000000000000000001412015042303011662 0ustar 3.0 (quilt) debian/aliki-alsa.desktop0000644000000000000000000000041412200012030012543 0ustar [Desktop Entry] Type=Application Name=Aliki (with ALSA support) GenericName=Aliki Comment=Measurement tool for Impulse Responses Keywords=audio;sound;alsa,measurement,impulse Icon=aliki_32x32 Exec=aliki -A Terminal=false Categories=AudioVideo;AudioVideoEditing;Music; debian/patches/0000755000000000000000000000000012200006743010607 5ustar debian/patches/01-makefile.patch0000644000000000000000000000221312200006452013616 0ustar Description: Set prefix properly and fix install commands. Removed -march=native cpp flag Author: Jaromír Mikeš Forwarded: no Index: aliki/source/Makefile =================================================================== --- aliki.orig/source/Makefile 2013-08-05 22:37:06.815208408 +0200 +++ aliki/source/Makefile 2013-08-05 22:37:43.467209898 +0200 @@ -20,13 +20,15 @@ # Modify as required. # -PREFIX = /usr/local + +DESTDIR= +PREFIX = /usr SUFFIX := $(shell uname -m | sed -e 's/^unknown/$//' -e 's/^i.86/$//' -e 's/^x86_64/$/64/') LIBDIR = lib$(SUFFIX) VERSION = 0.3.0 CPPFLAGS += -DVERSION=\"$(VERSION)\" -DPREFIX=\"$(PREFIX)\" CXXFLAGS += -O2 -Wall -MMD -MP -CXXFLAGS += -march=native +#CXXFLAGS += -march=native all: aliki aliki-rt @@ -56,8 +58,9 @@ install: aliki aliki-rt - install -m 755 aliki $(DESTDIR)$(PREFIX)/bin - install -m 755 aliki-rt $(DESTDIR)$(PREFIX)/bin + /usr/bin/install -d $(DESTDIR)$(PREFIX)/bin + /usr/bin/install -m 755 aliki $(DESTDIR)$(PREFIX)/bin + /usr/bin/install -m 755 aliki-rt $(DESTDIR)$(PREFIX)/bin uninstall: /bin/rm -f $(DESTDIR)$(PREFIX)/bin/aliki debian/patches/series0000644000000000000000000000005012200006510012007 0ustar 01-makefile.patch 02-spelling_fix.patch debian/patches/02-spelling_fix.patch0000644000000000000000000000117712200006207014533 0ustar Description: Fix spelling error Author: Jaromír Mikeš Forwarded: no Index: aliki/source/captwin.cc =================================================================== --- aliki.orig/source/captwin.cc 2013-08-05 22:34:23.219201756 +0200 +++ aliki/source/captwin.cc 2013-08-05 22:34:23.215201756 +0200 @@ -407,7 +407,7 @@ _tequal->set_align (1); y += 35; - add_text (x, y, 110, 17, "Ouput level", 1); + add_text (x, y, 110, 17, "Output level", 1); (_tlevel = new X_textip (this, this, &Tst1, x + 120, y, 50, 17, 15))->x_map (); _tlevel->set_align (1); _tlevel->set_text ("-20"); debian/aliki.install0000644000000000000000000000000412015042303011627 0ustar usr debian/changelog0000644000000000000000000000146512200013127011032 0ustar aliki (0.3.0-1) unstable; urgency=low * New upstream release. * Set dependency on libclxclient 3.9.0 to fix a crash. (Closes: #715628) * Fix VCS canonical URLs. * Update copyright file. * Added Keywords for desktop files. * Tighten depedency on zita-alsa-pcmi. * Don't sign tags. -- Jaromír Mikeš Mon, 05 Aug 2013 22:31:06 +0200 aliki (0.2.0-1) unstable; urgency=low * New upstream release * Refresh patches * wrap-and-sort -a -s * Bump Standards * Switch dh compat to 9 to fix hardening * libzita-alsa-pcmi-dev added to build-dep -- Jaromír Mikeš Mon, 06 May 2013 12:45:16 +0200 aliki (0.1.0-1) unstable; urgency=low * Initial release. (Closes: #602379) -- Jaromír Mikeš Tue, 26 Jul 2011 21:12:17 +0200 debian/compat0000644000000000000000000000000212142424204010357 0ustar 9 debian/watch0000644000000000000000000000014512015042303010205 0ustar version=3 http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html \ aliki-(.*)\.tar\.bz2 debian/gbp.conf0000644000000000000000000000006212200012360010565 0ustar [DEFAULT] pristine-tar = True compression = bzip2 debian/aliki-jack.desktop0000644000000000000000000000041512200012034012540 0ustar [Desktop Entry] Type=Application Name=Aliki (with JACK support) GenericName=Aliki Comment=Measurement tool for Impulse Responses Keywords=audio;sound;jackd,measurement,impulse Icon=aliki_32x32 Exec=aliki -J Terminal=false Categories=AudioVideo;AudioVideoEditing;Music; debian/aliki.10000644000000000000000000000402712015042303010332 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH ALIKI 1 "July 26, 2011" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME \fBaliki\fP \- Measurement tool for Impulse Responses .SH SYNOPSIS .B aliki .RI [ options ] .br .SH DESCRIPTION This manual page documents briefly the \fBaliki\fP program. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBaliki\fP measure Impulse Responses using a sine sweep and deconvolution. .PP \fBaliki\fP can work through ALSA or JACK (Jack Audio Connection Kit). .PP For more complete introduction to this method, see http://kokkinizita.linuxaudio.org/linuxaudio/downloads/aliki-manual.pdf .SH OPTIONS .PP .B \ -h Display short info .PP .B \ -J Use JACK .PP .B \ -A Use ALSA, with options: .PP .B \ -d Alsa device [hw:0.0] .PP .B \ -r Sample frequency [48000] .PP .B \ -p Period size [1024] .PP .B \ -n Number of fragments [2] .PP .B \ -E Prefix for audio process, e.g. sudo .PP .TP .SH SEE ALSO .BR jackd(1), .BR aliki-rt(1). .br .SH AUTHOR This manual page was written by Jaromír Mikeš , for the Debian project (but may be used by others). debian/control0000644000000000000000000000253312200007557010572 0ustar Source: aliki Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Jaromír Mikeš Build-Depends: binutils, debhelper (>= 9), libclalsadrv-dev (>= 2.0.0), libclthreads-dev (>= 2.4.0), libclxclient-dev (>= 3.9.0), libfftw3-dev, libjack-dev, libsndfile1-dev, libzita-alsa-pcmi-dev (>= 0.2.0) Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-multimedia/aliki.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/aliki.git Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html Package: aliki Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Measurement tool for Impulse Responses Measure Impulse Responses using a sine sweep and deconvolution. For more complete introduction to this method, see http://kokkinizita.linuxaudio.org/linuxaudio/downloads/aliki-manual.pdf Package: aliki-dbg Architecture: any Section: debug Priority: extra Depends: aliki (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for aliki Measure Impulse Responses using a sine sweep and deconvolution. For more complete introduction to this method, see http://kokkinizita.linuxaudio.org/linuxaudio/downloads/aliki-manual.pdf . This package contains the debugging symbols. debian/dirs0000644000000000000000000000001012015042303010027 0ustar usr/bin debian/rules0000755000000000000000000000072412142424204010244 0ustar #!/usr/bin/make -f LDFLAGS+=-Wl,--as-needed %: dh $@ --sourcedir=source --parallel override_dh_auto_install: dh_auto_install install -d $(CURDIR)/debian/aliki/usr/share/applications/ install -d $(CURDIR)/debian/aliki/usr/share/pixmaps/ install -m 644 $(CURDIR)/debian/*.desktop $(CURDIR)/debian/aliki/usr/share/applications/ install -m 644 $(CURDIR)/debian/*.xpm $(CURDIR)/debian/aliki/usr/share/pixmaps/ override_dh_strip: dh_strip --dbg-package=aliki-dbg debian/copyright0000644000000000000000000000224112200010222011075 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Aliki Upstream-Contact: Fons Adriaensen Source: http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html Files: * Copyright: 2005-2011 Fons Adriaensen License: GPL-3+ Files: debian/* Copyright: 2011-2013 Jaromír Mikeš License: GPL-3+ License: GPL-3+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This program 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. See the GNU General Public License for more details. Comment: You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/aliki.manpages0000644000000000000000000000004112015042303011755 0ustar debian/aliki.1 debian/aliki-rt.1 debian/menu0000644000000000000000000000022512015042303010042 0ustar ?package(aliki):needs="X11"\ section="Applications/Sound"\ title="aliki"\ icon="/usr/share/pixmaps/aliki_32x32.xpm"\ command="/usr/bin/aliki -J"