Initial commit of Debian packaging. - susmb - mounting of SMB/CIFS shares via F… | |
git clone git://git.codemadness.org/susmb | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit c5aff308c34ad6e896f867fe0d39d20e65a36485 | |
parent fdd9015111ff8fcb39d85d25250d14b1d532e44f | |
Author: Geoff Johnstone <[email protected]> | |
Date: Sat, 13 Mar 2010 13:07:12 +0000 | |
Initial commit of Debian packaging. | |
Diffstat: | |
M Makefile.in | 2 +- | |
M README | 3 +++ | |
A debian/changelog | 5 +++++ | |
A debian/compat | 1 + | |
A debian/control | 28 ++++++++++++++++++++++++++++ | |
A debian/rules | 3 +++ | |
A debian/usmb.docs | 3 +++ | |
7 files changed, 44 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile.in b/Makefile.in | |
@@ -18,7 +18,7 @@ | |
CC = @CC@ | |
-prefix = @prefix@ | |
+prefix = ${DESTDIR}@prefix@ | |
exec_prefix = @exec_prefix@ | |
bindir = @bindir@ | |
diff --git a/README b/README | |
@@ -13,6 +13,9 @@ a compilation problem on 64-bit platforms. | |
Nigel Smith (Email me at <firstname>.<surname>.name) contributed the | |
port to Samba 3.2. | |
+Michal Suchanek (Email hramrach at centrum dot cz) contributed the | |
+Debian packaging. | |
+ | |
Introduction | |
------------ | |
diff --git a/debian/changelog b/debian/changelog | |
@@ -0,0 +1,5 @@ | |
+usmb (20090411-1) UNRELEASED; urgency=low | |
+ | |
+ * Initial release. (Closes: #572703) | |
+ | |
+ -- Michal Suchanek <[email protected]> Wed, 10 Mar 2010 11:59:09 +0100 | |
diff --git a/debian/compat b/debian/compat | |
@@ -0,0 +1 @@ | |
+7 | |
diff --git a/debian/control b/debian/control | |
@@ -0,0 +1,28 @@ | |
+Source: usmb | |
+Section: otherosfs | |
+Priority: optional | |
+Build-Depends: | |
+ debhelper, | |
+ dpkg-dev, | |
+ quilt, | |
+ libfuse-dev (>> 2.6), | |
+ libsmbclient-dev (>> 3 ), | |
+ libxml2-dev, | |
+ pkg-config, | |
+ libglib2.0-dev, | |
+Standards-Version: 3.8.4 | |
+Maintainer: Michal Suchanek <[email protected]> | |
+ | |
+Package: usmb | |
+Recommends: fuse-utils | |
+Architecture: any | |
+Depends: | |
+ ${shlibs:Depends}, | |
+ ${misc:Depends}, | |
+Description: samba (CIFS) FUSE module | |
+ usmb mounts samba (CIFS, Windows, NetBIOS) shares just like smbfs does, | |
+ but uses FUSE to allow users other than root to mount shares. | |
+ . | |
+ Previously smbfs allowed the same by making mount.cifs setuid root but | |
+ this was recently disabled in the smbfs package due to security | |
+ concerns. | |
diff --git a/debian/rules b/debian/rules | |
@@ -0,0 +1,3 @@ | |
+#!/usr/bin/make -f | |
+%: | |
+ dh $@ | |
diff --git a/debian/usmb.docs b/debian/usmb.docs | |
@@ -0,0 +1,3 @@ | |
+README | |
+Changelog | |
+usmb.conf |