packages: add libassuan (partially closes: #9977)
[packages.git] / sound / sox / Makefile
1
2 # Copyright (C) 2008 David Cooper <dave@kupesoft.com>
3 # Copyright (C) 2006-2010 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=sox
12 PKG_VERSION:=14.0.1
13 PKG_RELEASE:=3
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/sox
17 PKG_MD5SUM:=6c95af60b20b9655531bf3162c0be937
18
19 PKG_FIXUP = libtool
20
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 TARGET_LDFLAGS+= \
26         -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
27
28 # NOTE: libflac is out of date for 8.09's freeze and can't be compiled in
29
30 define Package/sox
31   SECTION:=sound
32   CATEGORY:=Sound
33   DEPENDS:=+BUILD_PATENTED:lame-lib +BUILD_PATENTED:libmad +BUILD_PATENTED:libid3tag +libvorbis +libvorbisidec +libgsm
34   TITLE:=Sox is a general purpose sound converter/player/recorder
35   URL:=http://sox.sourceforge.net/
36 endef
37
38 define Package/sox/description
39         SoX is a command line utility that can convert various formats
40         of computer audio files in to other formats. It can also apply
41         various effects to these sound files during the conversion.
42         As an added bonus, SoX can play and record audio files on
43         several unix-style platforms.
44 endef
45
46 define Build/Configure
47         $(call Build/Configure/Default, \
48                 --disable-external-gsm \
49                 --disable-oss \
50                 --enable-alsa \
51                 --disable-libao \
52                 --without-libltdl \
53                 --with-ogg \
54                 --without-flac \
55                 --without-ffmpeg \
56                 --without-amr-wb \
57                 --without-amr-nb \
58                 --without-samplerate \
59                 --without-ladspa \
60                 --$(if $(CONFIG_BUILD_PATENTED),with-mad,without-mad) \
61                 --$(if $(CONFIG_BUILD_PATENTED),with-lame,without-lame) \
62                 --$(if $(CONFIG_BUILD_PATENTED),with-id3tag,without-id3tag) \
63         )
64 endef
65
66 define Package/sox/install
67         $(INSTALL_DIR) $(1)/usr/bin
68         $(INSTALL_DIR) $(1)/usr/lib
69         $(CP) $(PKG_INSTALL_DIR)/usr/bin/{play,rec,sox} $(1)/usr/bin/
70         $(CP) $(PKG_INSTALL_DIR)/usr/lib/{libsfx.so*,libsox.so*} $(1)/usr/lib/
71 endef
72
73 $(eval $(call BuildPackage,sox))
74