opus-tools: import new package
authorNicolas Thill <nico@openwrt.org>
Thu, 21 Aug 2014 20:53:05 +0000 (22:53 +0200)
committerNicolas Thill <nico@openwrt.org>
Sat, 23 Aug 2014 08:56:10 +0000 (10:56 +0200)
Opus-tools provides command-line utilities to encode, inspect, and decode .opus files.

Signed-off-by: Nicolas Thill <nico@openwrt.org>
utils/opus-tools/Makefile [new file with mode: 0644]

diff --git a/utils/opus-tools/Makefile b/utils/opus-tools/Makefile
new file mode 100644 (file)
index 0000000..da13a4e
--- /dev/null
@@ -0,0 +1,47 @@
+#
+# Copyright (C) 2014 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=opus-tools
+PKG_VERSION:=0.1.9
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=http://downloads.xiph.org/releases/opus/
+PKG_MD5SUM:=20682e4d8d1ae9ec5af3cf43e808b8cb
+
+PKG_LICENSE:=BSD-2-Clause
+PKG_LICENSE_FILE:=COPYING
+PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
+
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/opus-tools
+  SECTION:=utils
+  CATEGORY:=Utilities
+  DEPENDS:=+libogg +libopus
+  TITLE:=OPUS Codec tools
+  URL:=http://opus-codec.org/
+endef
+
+define Package/opus-tools/description
+ This package provides command-line utilities to encode, inspect, and decode 
+ .opus files.
+endef
+
+CONFIGURE_ARGS += \
+       --without-flac \
+
+define Package/opus-tools/install
+       $(INSTALL_DIR) $(1)/usr/bin
+       $(CP) $(PKG_INSTALL_DIR)/usr/bin/opus{dec,enc,info} $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,opus-tools))