wok view ppp/receipt @ rev 2645

Add lha
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 17 22:20:36 2009 +0200 (2009-04-17)
parents 942d5b5c8ec1
children b315a2103f94
line source
1 # SliTaz package receipt.
3 PACKAGE="ppp"
4 VERSION="2.4.4"
5 CATEGORY="network"
6 SHORT_DESC="Implements the Point-to-Point Protocol (PPP)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://ppp.samba.org/"
10 WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL"
11 CONFIG_FILES="/etc/ppp"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --mandir=/usr/share/man \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/sbin $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 strip -s $fs/usr/sbin/*
30 strip -s $fs/usr/lib/pppd/$VERSION/*
31 # Config files.
32 mkdir -p $fs/etc/ppp/scripts
33 cp stuff/README.scripts $fs/etc/ppp
34 cp -a $src/etc.ppp/* $fs/etc/ppp
35 # PPP scripts.
36 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
37 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
38 sed -i 's,ppp/ppp-on-dialer,ppp/script/ppp-on-dialer,' $fs/etc/ppp/scripts/ppp-on-dialer
39 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
40 cp -a $src/scripts/callback $fs/etc/ppp/scripts
41 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
42 }