2009-11-22 16:21:34 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 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:=umurmur
|
|
|
|
PKG_VERSION:=0.1.3
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://umurmur.googlecode.com/files/
|
|
|
|
PKG_MD5SUM:=f72b6f0aee7fdba31cd4faa9fb01ab6d
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/umurmur
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=uMurmur
|
|
|
|
DEPENDS:=+libopenssl +libconfig
|
|
|
|
URL:=http://code.google.com/p/umurmur
|
|
|
|
MAINTAINER:=Martin Johansson <martin@fatbob.nu>
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/umurmur/description
|
|
|
|
Minimalistic Mumble server daemon.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS := \
|
|
|
|
-DWRT_TARGET \
|
|
|
|
-I$(STAGING_DIR)/usr/include \
|
|
|
|
$(TARGET_CFLAGS)
|
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
MAKE_PATH:=src
|
2009-11-22 16:21:34 +00:00
|
|
|
|
|
|
|
define Package/umurmur/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/umurmurd $(1)/usr/bin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/files/umurmur.conf $(1)/etc/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/umurmur.init $(1)/etc/init.d/umurmur
|
|
|
|
$(INSTALL_DIR) $(1)/etc/umurmur
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,umurmur))
|