[package] change libpopt mirror
[openwrt/svn-archive/archive.git] / sound / sox / Makefile
1 #
2 # Copyright (C) 2008 David Cooper <dave@kupesoft.com>
3 # Copyright (C) 2006 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:=2
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 include $(INCLUDE_DIR)/package.mk
22
23 # NOTE: libflac is out of date for 8.09's freeze and can't be compiled in
24
25 define Package/sox
26 SECTION:=sound
27 CATEGORY:=Sound
28 DEPENDS:=+libmad +libvorbis +libvorbisidec +libgsm
29 TITLE:=Sox is a general purpose sound converter/player/recorder
30 URL:=http://sox.sourceforge.net/
31 endef
32
33 define Package/sox/description
34 SoX is a command line utility that can convert various formats
35 of computer audio files in to other formats. It can also apply
36 various effects to these sound files during the conversion.
37 As an added bonus, SoX can play and record audio files on
38 several unix-style platforms.
39 endef
40
41 define Build/Configure
42 $(call Build/Configure/Default, \
43 --disable-external-gsm \
44 --without-libltdl \
45 --with-ogg \
46 )
47 endef
48
49 define Build/Compile
50 $(MAKE) -C $(PKG_BUILD_DIR) \
51 DESTDIR="$(PKG_INSTALL_DIR)" \
52 STAGING_DIR="$(STAGING_DIR)" \
53 all install
54 endef
55
56 define Package/sox/install
57 $(INSTALL_DIR) $(1)/usr/bin
58 $(INSTALL_DIR) $(1)/usr/lib
59 $(CP) $(PKG_INSTALL_DIR)/usr/bin/{play,rec,sox} $(1)/usr/bin/
60 $(CP) $(PKG_INSTALL_DIR)/usr/lib/{libsfx.so*,libsox.so*} $(1)/usr/lib/
61 endef
62
63 $(eval $(call BuildPackage,sox))
64