wok annotate pptpclient/receipt @ rev 17261

Move separate MIME definitions to the shared-mime-info package.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Oct 22 03:42:23 2014 +0300 (2014-10-22)
parents aa4c910539a1
children 51b58a875fb6
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@3766 5 CATEGORY="network"
pascal@3762 6 SHORT_DESC="Microsoft Point-to-Point Tunneling Protocol client."
pascal@3762 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14698 8 LICENSE="GPL2"
pascal@3762 9 SOURCE="pptp"
pascal@3762 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@3762 11 WEB_SITE="http://pptpclient.sourceforge.net/"
pascal@3762 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@14698 13 TAGS="vpn tunnel"
pascal@14698 14
pascal@3762 15 DEPENDS="ppp"
pascal@3762 16 BUILD_DEPENDS="ppp"
pascal@3762 17
pascal@3762 18 # Rules to configure and make the package.
pascal@3762 19 compile_rules()
pascal@3762 20 {
pascal@3762 21 cd $src
pascal@3762 22 make &&
pascal@14698 23 make DESTDIR=$DESTDIR install
pascal@3762 24 }
pascal@3762 25
pascal@3762 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3762 27 genpkg_rules()
pascal@3762 28 {
pascal@3762 29 mkdir -p $fs/usr/sbin
pascal@14698 30 cp -a $install/usr/sbin/pptp $fs/usr/sbin
pascal@3762 31 }
pascal@3762 32