finally move buildroot-ng to trunk
[openwrt/openwrt.git] / package / pptp / 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:=pptp
12 PKG_VERSION:=1.6.0
13 PKG_RELEASE:=3
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/pptpclient
17 PKG_MD5SUM:=9a706327fb9827541d7c86d48ceb9631
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/pptp
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=PPTP client
28 DESCRIPTION:=\
29 This package contains a PPTP (Point-to-Point Tunneling Protocol) client.
30 URL:=http://pptpclient.sourceforge.net/
31 endef
32
33 define Package/pptp/install
34 install -d -m0755 $(1)/usr/sbin
35 install -m0755 $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/
36 install -d -m0755 $(1)/etc/ppp
37 install -m0644 ./files/options.pptp $(1)/etc/ppp/
38 install -d -m0755 $(1)/lib/network
39 install -m0755 ./files/pptp.sh $(1)/lib/network/
40 endef
41
42 $(eval $(call BuildPackage,pptp))