0c9ca6fd4e
git-svn-id: svn://svn.openwrt.org/openwrt/packages@17709 3c298f89-4303-0410-b956-a3cf2f4a3e73
44 lines
1021 B
Makefile
44 lines
1021 B
Makefile
#
|
|
# 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:=ekg
|
|
PKG_VERSION:=1.7
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://ekg.chmurka.net/
|
|
PKG_MD5SUM:=2aa92b56517fdf09d75519a105772b74
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ekg
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Eksperymentalny Klient Gadu-Gadu (Polish IM)
|
|
URL:=http://ekg.chmurka.net
|
|
DEPENDS:=+zlib +libncurses
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--without-c99-vsnprintf \
|
|
--without-libungif \
|
|
--without-libjpeg \
|
|
--without-openssl \
|
|
--disable-libgadu-openssl \
|
|
--enable-ui-ncurses \
|
|
--disable-ui-readline \
|
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
|
|
CFLAGS_LIBGADU="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include"
|
|
|
|
define Package/ekg/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_BUILD_DIR)/src/ekg $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ekg))
|