2014-03-27 07:04:01 +00:00
|
|
|
#
|
2008-08-20 22:00:41 +00:00
|
|
|
# Copyright (C) 2006 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:=keynote
|
|
|
|
PKG_VERSION:=2.3
|
|
|
|
PKG_RELEASE:=2
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
|
|
|
|
PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0
|
|
|
|
|
2010-10-16 18:43:37 +00:00
|
|
|
PKG_BUILD_PARALLEL:=0
|
2010-10-13 16:58:33 +00:00
|
|
|
|
2008-08-20 22:00:41 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/keynote
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2011-11-11 18:07:06 +00:00
|
|
|
DEPENDS:=+libopenssl
|
2008-08-20 22:00:41 +00:00
|
|
|
TITLE:=Simple and flexible trust-management system
|
|
|
|
URL:=http://www1.cs.columbia.edu/~angelos/keynote.html
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/keynote/description
|
2014-03-27 07:04:01 +00:00
|
|
|
KeyNote is a simple and flexible trust-management system designed to work
|
2008-08-20 22:00:41 +00:00
|
|
|
well for a variety of large- and small- scale Internet-based applications.
|
2014-03-27 07:04:01 +00:00
|
|
|
It provides a single, unified language for both local policies and
|
2008-08-20 22:00:41 +00:00
|
|
|
credentials.
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-static \
|
|
|
|
--enable-shared
|
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2009-12-18 11:06:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include/keynote
|
2008-08-20 22:00:41 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(1)/usr/include/keynote/
|
2009-12-18 11:06:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-08-20 22:00:41 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/libkeynote.a $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/keynote/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,keynote))
|