wok view cifs-utils/receipt @ rev 20460

Remove py3k7, up py3k (3.7.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 10 16:24:34 2018 +0200 (2018-10-10)
parents 401224c936cc
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="cifs-utils"
4 VERSION="6.7"
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="https://download.samba.org/pub/linux-cifs/$PACKAGE/$TARBALL"
12 PROVIDE="smbfs"
14 DEPENDS="linux-cifs attr libcap"
15 BUILD_DEPENDS="automake autoconf talloc-dev libcap-dev samba-dev krb5-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf -i
21 ./configure --prefix=/usr \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
26 cook_pick_manpages *.1
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/sbin
33 cp -a $install/sbin $fs
34 cd $fs/usr/sbin
35 ln -s ../../sbin/mount.cifs .
36 ln -s ../../sbin/mount.cifs umount.cifs
37 }