nuke $Id$ in /packages as well
[packages.git] / net / pepsal / Makefile
1
2 # Copyright (C) 2006-2008 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:=pepsal
11 PKG_VERSION:=1.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
16 PKG_MD5SUM:=c8ce69ad5590240d37118c8b6d2c1b0b
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/pepsal
21   TITLE:=Performance Enhancing Proxy
22   SECTION:=net
23   CATEGORY:=Network
24   DEPENDS:=+libnetfilter-queue
25   URL:=http://pepsal.sourceforge.net/
26 endef
27
28 define Package/pepsal/description
29  PEPsal is an integrated, multi-layer, transparent TCP Performance Enhancing 
30  Proxy which splits the connection into two parts, making use of Linux TCP 
31  enhancements when sending data, and largely improving performance in 
32  links with different characteristics 
33 endef
34
35
36 define Build/Configure
37         $(call Build/Configure/Default)
38 endef
39
40 define Build/Compile
41         $(MAKE) -C $(PKG_BUILD_DIR) \
42                 DESTDIR="$(PKG_INSTALL_DIR)" \
43                 install
44 endef
45
46 define Package/pepsal/install
47         $(INSTALL_DIR) $(1)/usr/bin
48         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pepsal $(1)/usr/bin/
49 endef
50
51 $(eval $(call BuildPackage,pepsal))