2009-01-28 11:30:36 +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:=prosody
|
2009-02-15 13:52:25 +00:00
|
|
|
PKG_VERSION:=0.3.0
|
2009-01-28 11:30:36 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://prosody.im/downloads/source/
|
2009-02-15 13:52:25 +00:00
|
|
|
PKG_MD5SUM:=97b19d75b3d6770fb9b46b6452f945dd
|
2009-01-28 11:30:36 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/prosody
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2009-02-15 13:52:25 +00:00
|
|
|
DEPENDS:=+liblua +libidn +luasocket +luaexpat +luasec
|
2009-01-28 11:30:36 +00:00
|
|
|
TITLE:=XMPP server
|
|
|
|
URL:=http://prosody.im
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/prosody/description
|
|
|
|
Prosody is an exciting new server for Jabber/XMPP
|
|
|
|
written in Lua. It aims to be easy to use, and light
|
|
|
|
on resources
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/prosody/conffiles
|
|
|
|
/etc/prosody/prosody.cfg.lua
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
(cd $(PKG_BUILD_DIR); ./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-lua="$(STAGING_DIR)/host/bin" \
|
|
|
|
--with-lua-include="$(STAGING_DIR)/usr/include/" \
|
|
|
|
--with-lua-lib="$(STAGING_DIR)/usr/lib" \
|
|
|
|
--cflags="$(TARGET_CFLAGS)" \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default,\
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/include" \
|
|
|
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
PREFIX="/usr" \
|
|
|
|
all install \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/prosody/install
|
|
|
|
$(INSTALL_DIR) $(1)/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,prosody))
|