blob: 9856e4d7ca3ca72d43f34a3eaa1cce4c3c4f77d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: breakdown <breakdown(at)archlinux(dot)us>
pkgname=plowshare
pkgver=snapshot_git20140112.7ad41c8
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")
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:
md5sums=('9c31c7f13b41d01bf90563ed25484678')
|