2010-07-23 14:43:36 +03:00
|
|
|
# $Id: Makefile 5624 2006-11-23 00:29:07Z nbd $
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=climm
|
|
|
|
PKG_VERSION:=0.7.1
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=climm-$(PKG_VERSION).tgz
|
|
|
|
PKG_SOURCE_URL:=http://www.climm.org/source/
|
|
|
|
#PKG_MD5SUM:=887415d16c32af58eab2ec2d9bb17fa6
|
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/climm-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:09:25 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-07-23 14:43:36 +03:00
|
|
|
|
|
|
|
define Package/climm
|
|
|
|
SECTION:=network
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Climm
|
2011-02-06 21:09:25 +02:00
|
|
|
DEPENDS:=+zlib +libncurses +libreadline $(INTL_DEPENDS) +libcharset +libopenssl +libgnutls +libgnutls-openssl
|
2010-07-23 14:43:36 +03:00
|
|
|
URL:=http://www.climm.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/climm/description
|
|
|
|
Terminal Jabber client.
|
|
|
|
endef
|
|
|
|
|
|
|
|
EXTRA_CFLAGS += \
|
|
|
|
-I$(STAGING_DIR)/usr/include
|
|
|
|
|
|
|
|
EXTRA_LDFLAGS += \
|
2011-02-06 21:09:25 +02:00
|
|
|
-lm -lz
|
2010-07-23 14:43:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--prefix=/usr --with-ssl \
|
|
|
|
export READLINE=1 \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/climm/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/climm $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,climm))
|