de7c50c2d44ffdc3b1442bb7efa7047d1f0b1062
[openwrt.git] / package / pptp / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=pptp
6 PKG_VERSION:=1.6.0
7 PKG_RELEASE:=3
8
9 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
11 PKG_SOURCE_URL:=@SF/pptpclient
12 PKG_MD5SUM:=9a706327fb9827541d7c86d48ceb9631
13 PKG_CAT:=zcat
14
15 include $(TOPDIR)/package/rules.mk
16
17 define Package/pptp
18 SECTION:=base
19 # CATEGORY:=FIXME
20 TITLE:=PPTP (Point-to-Point Tunneling Protocol) client
21 DESCRIPTION:=A Point-to-Point Tunneling Protocol Client
22 URL:=http://pptpclient.sourceforge.net/
23 endef
24
25 define Package/pptp/install
26 install -d -m0755 $(IDIR_PPTP)/sbin
27 install -d -m0755 $(IDIR_PPTP)/etc/ppp
28 install -d -m0755 $(IDIR_PPTP)/usr/sbin
29 install -m0755 ./files/ifup.pptp $(IDIR_PPTP)/sbin/ifup.pptp
30 install -m0644 ./files/options.pptp $(IDIR_PPTP)/etc/ppp/
31 install -m0755 $(PKG_BUILD_DIR)/pptp $(IDIR_PPTP)/usr/sbin/
32 endef
33
34 $(eval $(call BuildPackage,pptp))
This page took 0.040172 seconds and 3 git commands to generate.