diff options
Diffstat (limited to 'testing/ranger')
-rw-r--r-- | testing/ranger/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/ranger/APKBUILD b/testing/ranger/APKBUILD new file mode 100644 index 0000000000..85a68183e4 --- /dev/null +++ b/testing/ranger/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> + +pkgname=ranger +pkgver=1.5.4 +pkgrel=0 +pkgdesc='A simple, vim-like file manager' +url='http://ranger.nongnu.org' +arch='any' +license='GPL' +depends='python' +subpackages="$pkgname-doc" +source="http://ranger.nongnu.org/${pkgname}-${pkgver}.tar.gz" + +build() { + return 0 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + python setup.py -q install --root="${pkgdir}" --optimize=1 || return 1 +} + +md5sums="1fbc629b7a2c7e3e4695fb218eed7240 ranger-1.5.4.tar.gz" |