wok-next view cifs-utils/receipt @ rev 20790

1. update also pinentry-gtk to new version 2. add to both fltk-dev so fltk-config is found 3. I want to force also a build to see if it really builds OKish here (see wok-build)
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 11:23:42 2018 +0000 (2018-06-09)
parents 42e0165c64b9
children a3c581bf52b8
line source
1 # SliTaz package receipt v2.
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"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.samba.org/pub/linux-cifs/$PACKAGE/$TARBALL"
14 SPLIT="cifs-utils-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
24 cook_pick_manpages *.1
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 cifs-utils)
30 mkdir -p $fs/usr/sbin
31 cp -a $install/sbin $fs
32 cd $fs/usr/sbin
33 ln -s ../../sbin/mount.cifs .
34 ln -s ../../sbin/mount.cifs umount.cifs
35 DEPENDS="linux-cifs"
36 PROVIDE="smbfs"
37 ;;
38 *-dev)
39 mkdir -p $fs/usr
40 cp -a $install/usr/include $fs/usr
41 ;;
42 esac
43 }