nico 777e3d26ac packages/darkice: set lame prefix explicitly (closes: #10442)
Signed-off-by: Alam Arias <Alam.GBC@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29267 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-11-20 02:38:46 +00:00

59 lines
1.4 KiB
Makefile

#
# Copyright (C) 2011 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:=darkice
PKG_VERSION:=1.0
PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://darkice.googlecode.com/files/
PKG_MD5SUM:= 1804e63d42a9703d01fe378c9a77c473
PKG_FIXUP:=libtool
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/darkice
SECTION:=multimedia
CATEGORY:=Multimedia
SUBMENU:=Streaming
TITLE:=DarkIce is a live audio streamer
DEPENDS:=+lame +libpthread +libstdcpp
MAINTAINER:=Artur Wronowski <arteqw@gmail.com>
endef
define Package/darkice/description
DarkIce is a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server.
endef
CONFIGURE_ARGS += \
--with-lame \
--without-aacplus \
--without-alsa \
--without-faac \
--without-jack \
--without-samplerate \
--without-twolame \
--without-vorbis \
--with-lame-prefix="$(STAGING_DIR)/usr" \
define Package/darkice/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/darkice $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/etc/darkice.cfg $(1)/etc/
endef
define Package/darkice/conffiles
/etc/darkice.cfg
endef
$(eval $(call BuildPackage,darkice))