wok view cifs-utils/receipt @ rev 22679

updated elilo (3.10 -> 3.16)
author Hans-G?nter Theisgen
date Sat Jan 18 17:16:20 2020 +0100 (2020-01-18)
parents cf3e61da7a25
children 1974896886e3
line source
1 # SliTaz package receipt.
3 PACKAGE="cifs-utils"
4 VERSION="6.10"
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="attr gcc83-lib-base libcap linux-cifs"
16 BUILD_DEPENDS="autoconf automake gcc83 krb5-dev libcap-dev samba-dev talloc-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf -i &&
22 ./configure \
23 CC=gcc-83 \
24 CC=g++-83 \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
31 # not available
32 # cook_pick_manpages *.1
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/sbin
40 cp -a $install/sbin $fs
41 cd $fs/usr/sbin
42 ln -s ../../sbin/mount.cifs .
43 ln -s ../../sbin/mount.cifs umount.cifs
44 }