summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-07-19 18:29:31 +0200
committerErich Eckner <git@eckner.net>2021-07-19 18:29:31 +0200
commit7681b1fc18ef74fa231a4717b86d14e41b227ac8 (patch)
tree6332a591633071550b488e08e83a273a287de6ef
parente1892670ade427a21faa108111dfda60beceed0c (diff)
downloadcrux-ports-7681b1fc18ef74fa231a4717b86d14e41b227ac8.tar.xz
mtpfs new
-rw-r--r--manualPorts/mtpfs/.footprint3
-rw-r--r--manualPorts/mtpfs/.md5sum1
-rw-r--r--manualPorts/mtpfs/.signature5
-rw-r--r--manualPorts/mtpfs/Pkgfile21
4 files changed, 30 insertions, 0 deletions
diff --git a/manualPorts/mtpfs/.footprint b/manualPorts/mtpfs/.footprint
new file mode 100644
index 0000000..105ce68
--- /dev/null
+++ b/manualPorts/mtpfs/.footprint
@@ -0,0 +1,3 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/mtpfs
diff --git a/manualPorts/mtpfs/.md5sum b/manualPorts/mtpfs/.md5sum
new file mode 100644
index 0000000..e0e0bbd
--- /dev/null
+++ b/manualPorts/mtpfs/.md5sum
@@ -0,0 +1 @@
+a299cadca336e6945b7275b44c6e8d27 mtpfs-1.1.tar.gz
diff --git a/manualPorts/mtpfs/.signature b/manualPorts/mtpfs/.signature
new file mode 100644
index 0000000..ac4d831
--- /dev/null
+++ b/manualPorts/mtpfs/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGh5OKPlZSbnDpX8rI/bOWrh3/4n629062x76R+JCkHUFcXyY9cDaggB8ZIigR9nhMGX6EJoILsseyHvRWbvfBgo=
+SHA256 (Pkgfile) = 4d0e4277bf84362cb3261a4b605fdf6c746b8e7436670944ab235f05e62f0b40
+SHA256 (.footprint) = 3467e7d98ba05165ab9a3d7f490da78023120538611e6c450e9c0934a49cfa20
+SHA256 (mtpfs-1.1.tar.gz) = 1baf357de16995a5f0b5bc1b6833517a77456481d861cdba70f1ce1316ce4c1d
diff --git a/manualPorts/mtpfs/Pkgfile b/manualPorts/mtpfs/Pkgfile
new file mode 100644
index 0000000..c77adbd
--- /dev/null
+++ b/manualPorts/mtpfs/Pkgfile
@@ -0,0 +1,21 @@
+# Description: MTPFS is a FUSE filesystem based on libmtp that allows a mtp device to be browsed as if it were a normal external harddisk.
+# URL: http://www.adebenham.com/mtpfs/
+# Maintainer: Danny Rawlins, crux at romster dot me
+# Packager: Danny Rawlins, crux at romster dot me
+# Depends on: fuse glib libid3tag libmad libmtp
+
+name=mtpfs
+version=1.1
+release=1
+source=(http://www.adebenham.com/files/mtp/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --disable-dependency-tracking \
+
+ make
+ make DESTDIR=$PKG install
+}