summaryrefslogtreecommitdiff
path: root/pcr/jmtpfs
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-08-06 00:31:05 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-08-06 00:31:05 -0500
commit89115ddfbd8c78379211233f89b6c2fcc9dba66d (patch)
tree4250be7ded9bb75dd9211b3382235ba8d0943ad6 /pcr/jmtpfs
parent724a5b9b4d824b8c3af75334f80decd5454811fc (diff)
jmtpfs: add package to [pcr]
Diffstat (limited to 'pcr/jmtpfs')
-rw-r--r--pcr/jmtpfs/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/pcr/jmtpfs/PKGBUILD b/pcr/jmtpfs/PKGBUILD
new file mode 100644
index 000000000..0edc35287
--- /dev/null
+++ b/pcr/jmtpfs/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer (Arch): Philipp 'TamCore' B. <philipp [at] tamcore [dot] eu>
+# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
+pkgname=jmtpfs
+pkgver=0.5
+pkgrel=1
+license=('GPL3')
+pkgdesc="mtpfs with better support for Android"
+arch=('i686' 'x86_64')
+url="http://research.jacquette.com/jmtpfs-exchanging-files-between-android-devices-and-linux/"
+depends=('fuse' 'libmtp')
+source=("https://github.com/JasonFerrara/jmtpfs/archive/v${pkgver}.tar.gz")
+sha256sums=('c0cacc4751c586a3b2b0fcd9c98dae4810a5d44f3eb9d2870868a15eeb696883')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure CXXFLAGS=-lpthread --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}