wok view cifs-utils/receipt @ rev 20770

updated ccid again (1.4.8 -> 1.4.30)
author Hans-G?nter Theisgen
date Wed Feb 13 16:56:43 2019 +0100 (2019-02-13)
parents cd7983242740
children 15af92a0041c
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="https://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 }