summaryrefslogtreecommitdiff
path: root/pcr/plowshare
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-04-09 00:05:27 -0700
committerroot <root@rshg054.dnsready.net>2013-04-09 00:05:27 -0700
commit987f836820eae061f40608b4ee1b6a14ecced3cc (patch)
treed28e524877b41fb49ccb7b2f99b36db2f9c90e89 /pcr/plowshare
parentce26b1905ac40cd9389e1c9f364a2ccd8f4ec13c (diff)
Tue Apr 9 00:05:27 PDT 2013
Diffstat (limited to 'pcr/plowshare')
-rw-r--r--pcr/plowshare/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/pcr/plowshare/PKGBUILD b/pcr/plowshare/PKGBUILD
new file mode 100644
index 000000000..cc2fd08ef
--- /dev/null
+++ b/pcr/plowshare/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: breakdown <breakdown(at)archlinux(dot)us>
+
+pkgname=plowshare
+pkgver=snapshot_git20130401.7b374cb
+pkgrel=1
+pkgdesc="Command-line downloader and uploader for Rapidshare, Mediafire and other file sharing websites."
+arch=('any')
+url="http://code.google.com/p/plowshare/"
+license=('GPL')
+depends=('curl' 'recode' 'js')
+optdepends=('bash-completion: enable bash auto completion'
+ 'libcaca: ascii display for no X server'
+ 'tiv: ascii display for no X server'
+ 'aview: ascii display for no X server')
+conflicts=("$pkgname-git")
+source=("http://$pkgname.googlecode.com/files/${pkgname}4-${pkgver/_/-}.tar.gz")
+md5sums=('edcc004c9432c22644a44f97c2cd5992')
+
+package() {
+ cd "$srcdir/${pkgname}4-${pkgver/_/-}"
+
+ DESTDIR="$pkgdir/" PREFIX=/usr ./setup.sh install
+
+ # bash completion script
+ install -Dm644 etc/$pkgname.completion \
+ "$pkgdir/usr/share/bash-completion/completions/$pkgname"
+
+ # set CDIR for bash completion
+ sed -i "s|local/||" \
+ "$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et: