wok view rp-pppoe/receipt @ rev 14247

syslinux/iso2exe: use posixovl -F
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 23:14:15 2013 +0100 (2013-03-24)
parents 7b74d9bf8919
children 3b4e4318134e
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 BUILD_DEPENDS="ppp"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.roaringpenguin.com/products/pppoe"
11 WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL"
12 TAGS="network pppoe"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/../_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
30 cp -a $_pkg/etc $fs
31 cp -a $_pkg/usr/sbin $fs/usr
33 # Fix permissions on all scripts
34 chmod -R 755 $fs/usr/sbin/*
35 }