wok view cifs-utils/receipt @ rev 21597

audacity: variable LIBS modified
author Hans-G?nter Theisgen
date Tue May 21 15:26:18 2019 +0100 (2019-05-21)
parents a78610b2eb47
children cf3e61da7a25
line source
1 # SliTaz package receipt.
3 PACKAGE="cifs-utils"
4 VERSION="6.8"
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"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://download.samba.org/pub/linux-cifs/$PACKAGE/$TARBALL"
14 PROVIDE="smbfs"
15 DEPENDS="linux-cifs attr libcap"
16 BUILD_DEPENDS="automake autoconf talloc-dev libcap-dev samba-dev krb5-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf -i
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
29 # not available
30 # cook_pick_manpages *.1
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/sbin
37 cp -a $install/sbin $fs
38 cd $fs/usr/sbin
39 ln -s ../../sbin/mount.cifs .
40 ln -s ../../sbin/mount.cifs umount.cifs
41 }