summaryrefslogtreecommitdiff
path: root/simple-mtpfs/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-12-20 18:18:41 +0000
committerB Stack <bgstack15@gmail.com>2019-12-20 18:18:41 +0000
commitfcd816e77835cec588b88e9b9a40b8e07b7f0af3 (patch)
tree00f797e0b4bca4b11bb2601696e5a7d260fb97ac /simple-mtpfs/debian/control
parentMerge branch 'scite-bump' into 'master' (diff)
parentadd a few build deps, and readme (diff)
downloadstackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.tar.gz
stackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.tar.bz2
stackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.zip
Merge branch 'simple-mtpfs' into 'master'
add simple-mtpfs See merge request bgstack15/stackrpms!106
Diffstat (limited to 'simple-mtpfs/debian/control')
-rw-r--r--simple-mtpfs/debian/control27
1 files changed, 27 insertions, 0 deletions
diff --git a/simple-mtpfs/debian/control b/simple-mtpfs/debian/control
new file mode 100644
index 0000000..d1ccd89
--- /dev/null
+++ b/simple-mtpfs/debian/control
@@ -0,0 +1,27 @@
+Source: simple-mtpfs
+Section: utils
+Priority: optional
+Maintainer: B Stack <bgstack15@gmail.com/>
+XSBC-Original-Maintainer: Peter Hatina <phatina@gmail.com>
+Build-Depends: debhelper (>=12~),
+ pkg-config,
+ libmtp-dev,
+ libfuse-dev (>=2.7.3)
+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