wok view cifs-utils/receipt @ rev 16994

mplayer-opt: delete gui
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun Aug 10 01:59:37 2014 +0200 (2014-08-10)
parents 431a7ea3fd92
children 42e0165c64b9
line source
1 # SliTaz package receipt.
3 PACKAGE="cifs-utils"
4 VERSION="6.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="CIFS userland tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://wiki.samba.org/index.php/LinuxCIFS_utils"
11 WGET_URL="ftp://ftp.samba.org/pub/linux-cifs/$PACKAGE/$TARBALL"
12 PROVIDE="smbfs"
14 BUILD_DEPENDS=""
15 DEPENDS="linux-cifs"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/sbin
30 cp -a $install/sbin $fs
31 cd $fs/usr/sbin
32 ln -s ../../sbin/mount.cifs .
33 ln -s ../../sbin/mount.cifs umount.cifs
34 }