# HG changeset patch # User Pascal Bellard # Date 1380363150 0 # Node ID 431a7ea3fd92aea9764fd25db8ff4dbd036898a4 # Parent 5c5aba03d16da0446ebf784be3770c01bdbbd4e7 Add cifs-utils diff -r 5c5aba03d16d -r 431a7ea3fd92 cifs-utils-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cifs-utils-dev/receipt Sat Sep 28 10:12:30 2013 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="cifs-utils-dev" +VERSION="6.1" +CATEGORY="development" +SHORT_DESC="CIFS userland tools, development files." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" +WEB_SITE="http://wiki.samba.org/index.php/LinuxCIFS_utils" +WANTED="cifs-utils" + +DEPENDS="cifs-utils" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/include $fs/usr +} diff -r 5c5aba03d16d -r 431a7ea3fd92 cifs-utils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cifs-utils/receipt Sat Sep 28 10:12:30 2013 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="cifs-utils" +VERSION="6.1" +CATEGORY="system-tools" +SHORT_DESC="CIFS userland tools." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://wiki.samba.org/index.php/LinuxCIFS_utils" +WGET_URL="ftp://ftp.samba.org/pub/linux-cifs/$PACKAGE/$TARBALL" +PROVIDE="smbfs" + +BUILD_DEPENDS="" +DEPENDS="linux-cifs" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/sbin + cp -a $install/sbin $fs + ln -s ../../sbin/mount.cifs . + ln -s ../../sbin/mount.cifs umount.cifs +} diff -r 5c5aba03d16d -r 431a7ea3fd92 smbfs/receipt --- a/smbfs/receipt Sat Sep 28 09:30:43 2013 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="smbfs" -VERSION="3.5.8" -CATEGORY="network" -SHORT_DESC="Mount/umount tools for SMB/CIFS" -MAINTAINER="erjo@slitaz.org" -LICENSE="GPL3" -WEB_SITE="http://www.samba.org/" -WANTED="samba" -SUGGESTED="smbclient" - -DEPENDS="linux-cifs" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - while read file; do - dir=${file%/*} - [ -d $fs$dir ] || mkdir -p $fs$dir - cp -a $_pkg$file $fs$dir - done < $wanted_stuff/$PACKAGE.files-list -} - -