flashrom: update to 1.2.1
[feed/packages.git] / sound / opus-tools / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=opus-tools
9 PKG_VERSION:=0.2
10 PKG_RELEASE:=1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=http://downloads.xiph.org/releases/opus/
14 PKG_HASH:=b4e56cb00d3e509acfba9a9b627ffd8273b876b4e2408642259f6da28fa0ff86
15
16 PKG_LICENSE:=BSD-2-Clause
17 PKG_LICENSE_FILES:=COPYING
18 PKG_MAINTAINER:=Eduardo Abinader <eduardoabinader@gmail.com>
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/opus-tools
25 SECTION:=sound
26 CATEGORY:=Sound
27 DEPENDS:=+libogg +libopus +libopusfile +libopusenc
28 TITLE:=OPUS Codec tools
29 URL:=http://opus-codec.org/
30 endef
31
32 define Package/opus-tools/description
33 This package provides command-line utilities to encode, inspect,
34 and decode .opus files.
35 endef
36
37 CONFIGURE_ARGS += \
38 --without-flac \
39
40 define Package/opus-tools/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(CP) $(PKG_INSTALL_DIR)/usr/bin/opus{dec,enc,info} $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,opus-tools))