keynote has broken internal dependencies. Force -j1 for now.
[packages.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 # Force -j1
19 PKG_JOBS:=
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/keynote
24   SECTION:=net
25   CATEGORY:=Network
26   DEPENDS:=@!LINUX_2_4 +libopenssl
27   TITLE:=Simple and flexible trust-management system
28   URL:=http://www1.cs.columbia.edu/~angelos/keynote.html
29 endef
30
31 define Package/keynote/description
32  KeyNote is a simple and flexible trust-management system designed to work 
33  well for a variety of large- and small- scale Internet-based applications.
34  It provides a single, unified language for both local policies and 
35  credentials.
36 endef
37
38 CONFIGURE_ARGS += \
39         --enable-static \
40         --enable-shared
41
42 MAKE_FLAGS += \
43         CFLAGS="$(TARGET_CFLAGS)"
44
45 define Build/InstallDev
46         $(INSTALL_DIR) $(1)/usr/include/keynote
47         $(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(1)/usr/include/keynote/
48         $(INSTALL_DIR) $(1)/usr/lib
49         $(CP) $(PKG_BUILD_DIR)/libkeynote.a $(1)/usr/lib/
50 endef
51
52 define Package/keynote/install
53         $(INSTALL_DIR) $(1)/usr/sbin
54         $(INSTALL_BIN) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/
55 endef
56
57 $(eval $(call BuildPackage,keynote))