diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-multimedia/recipes-multimedia/sox | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/sox')
-rw-r--r-- | meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb b/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb new file mode 100644 index 0000000000..cfc61d4ef1 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | DESCRIPTION="SoX is the Swiss Army knife of sound processing tools. \ | ||
2 | It converts audio files among various standard audio file formats \ | ||
3 | and can apply different effects and filters to the audio data." | ||
4 | HOMEPAGE = "http://sox.sourceforge.net" | ||
5 | SECTION = "audio" | ||
6 | |||
7 | DEPENDS = "libpng libav libsndfile1" | ||
8 | |||
9 | PR = "r2" | ||
10 | |||
11 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)} \ | ||
12 | ${@base_contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)} \ | ||
13 | magic \ | ||
14 | " | ||
15 | PACKAGECONFIG[pulseaudio] = "--with-pulseaudio=dyn,--with-pulseaudio=no,pulseaudio," | ||
16 | PACKAGECONFIG[alsa] = "--with-alsa=dyn,--with-alsa=no,alsa-lib," | ||
17 | PACKAGECONFIG[wavpack] = "--with-wavpack=dyn,--with-wavpack=no,wavpack," | ||
18 | PACKAGECONFIG[magic] = "--with-magic,--without-magic,file," | ||
19 | PACKAGECONFIG[mad] = "--with-mad,--without-mad,libmad," | ||
20 | PACKAGECONFIG[id3tag] = "--with-id3tag,--without-id3tag,libid3tag," | ||
21 | PACKAGECONFIG[lame] = "--with-lame,--without-lame,lame," | ||
22 | |||
23 | LICENSE = "GPLv2 & LGPLv2.1" | ||
24 | LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=751419260aa954499f7abaabaa882bbe \ | ||
25 | file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24" | ||
26 | |||
27 | SRC_URI = "${SOURCEFORGE_MIRROR}/sox/sox-${PV}.tar.gz" | ||
28 | SRC_URI[md5sum] = "b0c15cff7a4ba0ec17fdc74e6a1f9cf1" | ||
29 | SRC_URI[sha256sum] = "3ee34b14dd267de378e8a117aae81ec4cae330772342e6a55bbf6520a0a88aa3" | ||
30 | |||
31 | inherit autotools | ||
32 | |||
33 | BBCLASSEXTEND = "native" | ||
34 | |||