1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-29 00:38:53 +03:00
openwrt-packages/tntnet/Makefile
2011-03-08 19:41:01 +03:00

61 lines
1.4 KiB
Makefile

#
# Copyright (C) 2008 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:=tntnet
PKG_VERSION:=2.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.tntnet.org/download
PKG_MD5SUM:=8f7185eeed23e7ae6a9be314e2fc0d36
PKG_INSTALL:=1
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
PKG_BUILD_DEPENDS:=cxxtools/host
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Package/tntnet
TITLE:=tntnet
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+zlib +cxxtools
endef
define Build/Configure
$(call Build/Configure/Default, \
--with-epoll=no \
--with-ssl=no \
--with-cgi=no \
--with-demos=no \
--with-server=no \
--with-sdk=no \
--disable-unittest \
)
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/include/tnt $(1)/usr/include/
#$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.{a,so*,la} $(1)/usr/lib/ # no static library is created (bug?)
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.{so*,la} $(1)/usr/lib/
endef
define Package/tntnet/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.so* $(1)/usr/lib/
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,tntnet))