summaryrefslogtreecommitdiff
path: root/simple-mtpfs/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'simple-mtpfs/debian/control')
-rw-r--r--simple-mtpfs/debian/control24
1 files changed, 24 insertions, 0 deletions
diff --git a/simple-mtpfs/debian/control b/simple-mtpfs/debian/control
new file mode 100644
index 0000000..398d6ec
--- /dev/null
+++ b/simple-mtpfs/debian/control
@@ -0,0 +1,24 @@
+Source: simple-mtpfs
+Section: utils
+Priority: optional
+Maintainer: B Stack <bgstack15@gmail.com/>
+XSBC-Original-Maintainer: Peter Hatina <phatina@gmail.com>
+Build-Depends: debhelper (>=11~)
+Standards-Version: 4.1.4
+Homepage: https://github.com/phatina/simple-mtpfs
+Vcs-Git: git://github.com/phatina/simple-mtpfs.git
+Vcs-Browser: https://github.com/phatina/simple-mtpfs
+
+Package: simple-mtpfs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, fuse
+Provides: mtpfs
+Conflicts: mtpfs
+Description: Simple MTP fuse filesystem driver
+ SIMPLE-MTPFS (Simple Media Transfer Protocol FileSystem) is a file system for
+ Linux (and other operating systems with a FUSE implementation, such as Mac OS X
+ or FreeBSD) capable of operating on files on MTP devices attached via
+ USB to local machine. On the local computer where the SIMPLE-MTPFS is
+ mounted, the implementation makes use of the FUSE (Filesystem in Userspace)
+ kernel module. The practical effect of this is that the end user can seamlessly
+ interact with MTP device files.
bgstack15