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