wok view rp-pppoe/receipt @ rev 8080

Add: xorg-makedepend 1.0.3
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Jan 22 03:25:18 2011 +0100 (2011-01-22)
parents cac7f1b3946f
children d5e61d7ac540
line source
1 # SliTaz package receipt.
3 PACKAGE="rp-pppoe"
4 VERSION="3.10"
5 CATEGORY="network"
6 SHORT_DESC="Tools to configure a PPPOE network connection."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.roaringpenguin.com/products/pppoe"
10 WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL"
11 TAGS="network pppoe"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src/src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/../_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
29 cp -a $_pkg/etc $fs
30 cp -a $_pkg/usr/sbin $fs/usr
32 # Fix permissions on all scripts
33 chmod -R 755 $fs/usr/sbin/*
34 }