Date: Thursday, October 25, 2018 @ 17:26:56 Author: arodseth Revision: 399015
Add fff, a simple and fast file manager from the author of neofetch Added: fff/ fff/repos/ fff/repos/community-any/ fff/trunk/ fff/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: fff/trunk/PKGBUILD =================================================================== --- fff/trunk/PKGBUILD (rev 0) +++ fff/trunk/PKGBUILD 2018-10-25 17:26:56 UTC (rev 399015) @@ -0,0 +1,24 @@ +# Maintainer: Alexander F. Rødseth <[email protected]> +# Contributor: Crestwave <[email protected]> + +pkgname=fff +pkgver=0.0 +pkgrel=1 +pkgdesc='Simple and fast file manager' +arch=('any') +url='https://github.com/dylanaraps/fff' +license=('MIT') +makedepends=('git') +depends=('xdg-utils') +source=("git+${url}#commit=339e1e9b") +sha256sums=('SKIP') + +package() { + cd "$pkgname" + install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname" + install -Dm644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1" + install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 {CONTRIBUTING,README}.md -t "$pkgdir/usr/share/doc/$pkgname" +} + +# vim: ts=2 sw=2 et:
