From: W. Michael Petullo Date: Mon, 29 Sep 2014 01:53:47 +0000 (-0400) Subject: Copy libmcrypt from old repository and update X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e2e0b211e5d12efdae18c443e48862db302d3feb;p=openwrt-packages.git Copy libmcrypt from old repository and update Signed-off-by: W. Michael Petullo --- diff --git a/libs/libmcrypt/Makefile b/libs/libmcrypt/Makefile new file mode 100644 index 000000000..37aeb8d24 --- /dev/null +++ b/libs/libmcrypt/Makefile @@ -0,0 +1,65 @@ +# +# Copyright (C) 2006-2010 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:=libmcrypt +PKG_VERSION:=2.5.8 +PKG_RELEASE:=2 + +PKG_MAINTAINER:=W. Michael Petullo + +PKG_LICENSE:=LGPLv2.1 +PKG_LICENSE_FILE:=COPYING.LIB + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=@SF/mcrypt +PKG_MD5SUM:=c4f491dd411a09e9de3b8702ea6f73eb + +PKG_FIXUP:=autoreconf +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +TARGET_CFLAGS += $(FPIC) + +define Package/libmcrypt + SECTION:=libs + CATEGORY:=Libraries + TITLE:=Cryptographic library + URL:=http://mcrypt.sourceforge.net/ +endef + +define Package/libmcrypt/description + libmcrypt is a cryptographic library that conveniently brings + together a variety of ciphers for convenient use. +endef + +define Build/Configure + $(call Build/Configure/Default, \ + --enable-shared \ + --enable-static \ + ) +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmcrypt.{a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libmcrypt-config $(1)/usr/bin/ + $(SED) 's,-I$$$${prefix}/include,,g' $(1)/usr/bin/libmcrypt-config + $(SED) 's,-L$$$${exec_prefix}/lib,,g' $(1)/usr/bin/libmcrypt-config +endef + +define Package/libmcrypt/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmcrypt.so.* $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libmcrypt))