blob: b4a3f3d8e404a01a8534ceaef45bd35ea1369580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
PKG_NAME:= pptp
PKG_VERSION:= 1.8.0
PKG_RELEASE:= 1
PKG_MD5SUM:= 4efce9f263e2c3f38d79d9df222476de
PKG_DESCR:= point-to-point tunneling protocol client
PKG_SECTION:= net/ppp
PKG_DEPENDS:= ppp
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=pptpclient/}
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,PPTP,pptp,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIG_STYLE:= manual
INSTALL_STYLE:= manual
do-install:
${INSTALL_DIR} ${IDIR_PPTP}/sbin
${INSTALL_DIR} ${IDIR_PPTP}/usr/sbin
${INSTALL_DIR} ${IDIR_PPTP}/etc/ppp
${INSTALL_BIN} ./files/ifup.pptp ${IDIR_PPTP}/sbin/ifup.pptp
${INSTALL_DATA} ./files/options.pptp ${IDIR_PPTP}/etc/ppp/
${INSTALL_BIN} ${WRKBUILD}/pptp ${IDIR_PPTP}/usr/sbin/
include ${TOPDIR}/mk/pkg-bottom.mk
|