at: bump version
[feed/packages.git] / libs / libhttp-parser / Makefile
1 #
2 # Copyright (C) 2013 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:=libhttp-parser
11 PKG_VERSION:=2.3.0
12 PKG_RELEASE=1
13 PKG_MAINTAINER:=Ramanathan Sivagurunathan <ramzthecoder@gmail.com>
14 PKG_LICENSE:=MIT
15 PKG_LICENSE_FILES:=LICENSE-MIT
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_MIRROR_HASH:=721ee45b09e8d999e814afe60508bcf0c8d35940cb71417ee96c0db5cdc161ff
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20 PKG_SOURCE_URL:=git://github.com/joyent/http-parser.git
21 PKG_SOURCE_PROTO:=git
22 PKG_SOURCE_VERSION:=56f7ad0e2e5a80f79d214015c91e1f17d11d109f
23
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/libhttp-parser
28 SECTION:=libs
29 CATEGORY:=Libraries
30 TITLE:=A library to parse http request and response
31 URL:=https://github.com/joyent/http-parser
32 endef
33
34 define Package/libhttp-parser/description
35 A parser for HTTP messages written in C. It parses both requests and responses.
36 The parser is designed to be used in performance HTTP applications.
37 It does not make any syscalls nor allocations, it does not buffer data,
38 it can be interrupted at anytime. Depending on your architecture,
39 it only requires about 40 bytes of data per message stream
40 (in a web server that is per connection).
41 endef
42
43 define Build/Compile
44 $(call Build/Compile/Default, library)
45 endef
46
47 define Build/InstallDev
48 $(INSTALL_DIR) $(1)/usr/include
49 $(INSTALL_DATA) $(PKG_BUILD_DIR)/http_parser.h $(1)/usr/include/
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(INSTALL_DATA) $(PKG_BUILD_DIR)/libhttp_parser.so.* $(1)/usr/lib/
52 ( cd $(1)/usr/lib ; ln -s libhttp_parser.so.* libhttp_parser.so )
53 endef
54
55 define Package/libhttp-parser/install
56 $(INSTALL_DIR) $(1)/usr/lib
57 $(CP) $(PKG_BUILD_DIR)/libhttp_parser.so.* $(1)/usr/lib/
58 ( cd $(1)/usr/lib ; ln -s libhttp_parser.so.* libhttp_parser.so )
59 endef
60
61 $(eval $(call BuildPackage,libhttp-parser))