lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Makefile (1078B)


      1 #
      2 # Copyright (C) 2015 OpenWrt.org
      3 #
      4 # This is free software, licensed under the GNU General Public License v2.
      5 # See /LICENSE for more information.
      6 #
      7 
      8 include $(TOPDIR)/rules.mk
      9 
     10 PKG_NAME:=ibrcommon
     11 PKG_VERSION:=1.0.1
     12 PKG_RELEASE:=2
     13 
     14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
     15 PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
     16 PKG_MD5SUM:=0104763ede969c470f32244d76c234b8
     17 PKG_MAINTAINER:=Johannes Morgenroth <jm@m-network.de>
     18 PKG_LICENSE:=Apache-2.0
     19 
     20 PKG_INSTALL:=1
     21 PKG_FIXUP:=libtool
     22 
     23 include $(INCLUDE_DIR)/package.mk
     24 
     25 define Package/ibrcommon
     26   SECTION:=libs
     27   CATEGORY:=Libraries
     28   DEPENDS:=+libstdcpp +libpthread +librt +libnl +libopenssl
     29   TITLE:=IBR Common C++ Library
     30 endef
     31 
     32 CONFIGURE_ARGS += \
     33 	--with-openssl
     34 
     35 define Package/ibrcommon/description
     36  A library with common functions for C++.
     37 endef
     38 
     39 define Build/InstallDev
     40 	$(INSTALL_DIR) $(1)
     41 	$(CP) $(PKG_INSTALL_DIR)/* $(1)/
     42 endef
     43 
     44 define Package/ibrcommon/install
     45 	$(INSTALL_DIR) $(1)/usr/lib
     46 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
     47 endef
     48 
     49 $(eval $(call BuildPackage,ibrcommon))