blob: 994bf8a1df2a4bd2cf347a48d409e4aae376910c (
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
35
36
37
38
39
40
41
42
43
44
45
|
# Contributor: Roman Zimbelmann <romanz@lavabit.com>
# Contributor: nfnty <arch at nfnty dot se>
# Contributor: aksr <aksr at t-com dot me>
# Mantainer: XavRan <leandro.espinozar@protonmail.com>
pkgname=ranger-git
pkgver=1.9.3.663.g478d5b62
pkgrel=1
pkgdesc="A simple, vim-like file manager."
arch=('any')
url="https://ranger.github.io/"
license=('GPL')
depends=('python') #python(>=2.6 or >=3.1)
makedepends=('git' 'python-setuptools')
optdepends=('atool: for previews of archives'
'file: for determining file types'
'imagemagick: convert to auto-rotate images and for image previews'
'highlight: for syntax highlighting of code'
'libcaca: for ASCII-art image previews'
'mediainfo: for viewing information about media files'
'perl-image-exiftool: for viewing information about media files'
'poppler: for pdf previews'
'python-bidi: for bidi algorithm support'
'python-chardet: in case of encoding detection problems'
'python-pillow: image preview with kitty'
'python-ueberzug: w3mimgdisplay alternative'
'sudo: to use the "run as root"-feature'
'transmission-cli: for viewing bittorrent information'
'w3m: for previews of images and html pages')
provides=('ranger')
conflicts=('ranger')
source=("$pkgname::git+https://github.com/ranger/ranger")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --always | sed -e 's|-|.|g' -e '1s|^.||'
}
package() {
cd "$srcdir/$pkgname"
python setup.py -q install --root="$pkgdir" --optimize=1
install -Dm644 LICENSE $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
}
|