wok-stable annotate pptpclient/receipt @ rev 3762
Add pptpclient
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 29 09:09:42 2009 +0200 (2009-07-29) |
parents | |
children | f135405894d8 |
rev | line source |
---|---|
pascal@3762 | 1 # SliTaz package receipt. |
pascal@3762 | 2 |
pascal@3762 | 3 PACKAGE="pptpclient" |
pascal@3762 | 4 VERSION="1.7.2" |
pascal@3762 | 5 CATEGORY="system-tools" |
pascal@3762 | 6 SHORT_DESC="Microsoft Point-to-Point Tunneling Protocol client." |
pascal@3762 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@3762 | 8 SOURCE="pptp" |
pascal@3762 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@3762 | 10 WEB_SITE="http://pptpclient.sourceforge.net/" |
pascal@3762 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@3762 | 12 DEPENDS="ppp" |
pascal@3762 | 13 BUILD_DEPENDS="ppp" |
pascal@3762 | 14 |
pascal@3762 | 15 # Rules to configure and make the package. |
pascal@3762 | 16 compile_rules() |
pascal@3762 | 17 { |
pascal@3762 | 18 cd $src |
pascal@3762 | 19 make && |
pascal@3762 | 20 make DESTDIR=$PWD/_pkg install |
pascal@3762 | 21 } |
pascal@3762 | 22 |
pascal@3762 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3762 | 24 genpkg_rules() |
pascal@3762 | 25 { |
pascal@3762 | 26 mkdir -p $fs/usr/sbin |
pascal@3762 | 27 cp -a $_pkg/usr/sbin/pptp $fs/usr/sbin |
pascal@3762 | 28 } |
pascal@3762 | 29 |