summaryrefslogtreecommitdiff
path: root/manualPorts/mtpfs/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/mtpfs/Pkgfile')
-rw-r--r--manualPorts/mtpfs/Pkgfile21
1 files changed, 21 insertions, 0 deletions
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
+}