gnu: Add Pfff.
[jackhill/guix/guix.git] / gnu / packages / audacity.scm
CommitLineData
147479c9
TUBK
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages audacity)
20 #:use-module (guix packages)
21 #:use-module (guix download)
22 #:use-module ((guix licenses) #:prefix license:)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages)
25 #:use-module (gnu packages audio)
26 #:use-module (gnu packages base)
27 #:use-module (gnu packages gtk)
28 #:use-module (gnu packages linux)
29 #:use-module (gnu packages mp3)
30 #:use-module (gnu packages pkg-config)
31 #:use-module (gnu packages pulseaudio)
32 #:use-module (gnu packages python)
33 #:use-module (gnu packages xiph)
34 #:use-module (gnu packages xml)
35 #:use-module (gnu packages video)
36 #:use-module (gnu packages wxwidgets))
37
38(define-public audacity
39 (package
40 (name "audacity")
41 (version "2.1.0")
42 (source
43 (origin
44 (method url-fetch)
45 (uri
46 (string-append
47 "mirror://sourceforge/audacity/audacity-minsrc-" version ".tar.xz"))
48 (sha256
49 (base32 "1cs2w3fwqylpqmfwkvlgdx5lhclpckfil7pqibl37qlbnf4qvndh"))
50 (patches (list (search-patch "audacity-fix-ffmpeg-binding.patch")))))
51 (build-system gnu-build-system)
52 (inputs
53 ;; TODO: Add portSMF and libwidgetextra once they're packaged. In-tree
54 ;; versions shipping with Audacity are used for now.
55 `(("wxwidgets" ,wxwidgets-2)
56 ("gtk" ,gtk+-2)
57 ("alsa-lib" ,alsa-lib)
6a5894a8 58 ("jack" ,jack-1)
147479c9
TUBK
59 ("expat" ,expat)
60 ("ffmpeg" ,ffmpeg)
61 ("lame" ,lame)
62 ("flac" ,flac)
63 ("libid3tag" ,libid3tag)
64 ("libmad" ,libmad)
65 ("libsbsms" ,libsbsms)
66 ("libsndfile" ,libsndfile)
67 ("soundtouch" ,soundtouch)
68 ("soxr" ,soxr) ;replaces libsamplerate
69 ("twolame" ,twolame)
70 ("vamp" ,vamp)
71 ("libvorbis" ,libvorbis)
72 ("lv2" ,lv2)
73 ("lilv" ,lilv)
74 ("portaudio" ,portaudio)))
75 (native-inputs
76 `(("pkg-config" ,pkg-config)
77 ("python" ,python-2)
78 ("which" ,which)))
79 (arguments
80 '(#:configure-flags
81 (let ((libid3tag (assoc-ref %build-inputs "libid3tag"))
82 (libmad (assoc-ref %build-inputs "libmad")))
83 (list
84 ;; Loading FFmpeg dynamically is problematic.
85 "--disable-dynamic-loading"
86 ;; libid3tag and libmad provide no .pc files, so pkg-config fails to
87 ;; find them. Force their inclusion.
88 (string-append "ID3TAG_CFLAGS=-I" libid3tag "/include")
89 (string-append "ID3TAG_LIBS=-L" libid3tag "/lib -lid3tag -lz")
90 (string-append "LIBMAD_CFLAGS=-I" libmad "/include")
91 (string-append "LIBMAD_LIBS=-L" libmad "/lib -lmad")))
92 ;; The test suite is not "well exercised" according to the developers,
93 ;; and fails with various errors. See
94 ;; <http://sourceforge.net/p/audacity/mailman/message/33524292/>.
95 #:tests? #f))
96 (home-page "http://audacity.sourceforge.net/")
97 (synopsis "Software for recording and editing sounds")
98 (description
99 "Audacity is a multi-track audio editor designed for recording, playing
100and editing digital audio. It features digital effects and spectrum analysis
101tools.")
102 (license license:gpl2+)))