7cac89148108092fbc5ff02ff47e39fe9498a9a7
[openwrt/svn-archive/archive.git] / libs / keynote / Makefile
1 #
2 # Copyright (C) 2006 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:=keynote
11 PKG_VERSION:=2.3
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
16 PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/keynote
21 SECTION:=net
22 CATEGORY:=Network
23 DEPENDS:=@LINUX_2_6 +libopenssl
24 TITLE:=Simple and flexible trust-management system
25 URL:=http://www1.cs.columbia.edu/~angelos/keynote.html
26 endef
27
28 define Package/keynote/description
29 KeyNote is a simple and flexible trust-management system designed to work
30 well for a variety of large- and small- scale Internet-based applications.
31 It provides a single, unified language for both local policies and
32 credentials.
33 endef
34
35 CONFIGURE_ARGS += \
36 --enable-static \
37 --enable-shared
38
39 MAKE_FLAGS += \
40 CFLAGS="$(TARGET_CFLAGS)"
41
42 define Build/InstallDev
43 $(INSTALL_DIR) $(1)/usr/include/keynote
44 $(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(1)/usr/include/keynote/
45 $(INSTALL_DIR) $(1)/usr/lib
46 $(CP) $(PKG_BUILD_DIR)/libkeynote.a $(1)/usr/lib/
47 endef
48
49 define Package/keynote/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/
52 endef
53
54 $(eval $(call BuildPackage,keynote))