wok view cifs-utils/receipt @ rev 19415

make-slitaz-icons: add multimedia-video-player icon
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Sep 24 16:49:43 2016 +0300 (2016-09-24)
parents f13bd223c231
children 401224c936cc
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 WEB_SITE="http://wiki.samba.org/index.php/LinuxCIFS_utils"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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
25 cook_pick_manpages *.1
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/sbin
32 cp -a $install/sbin $fs
33 cd $fs/usr/sbin
34 ln -s ../../sbin/mount.cifs .
35 ln -s ../../sbin/mount.cifs umount.cifs
36 }