contrib/vifm/Pkgfile

28 lines
644 B
Plaintext
Raw Normal View History

2018-03-31 22:39:09 +02:00
# Description: A ncurses based file manager with vi like keybindings
# URL: http://vifm.info
# Maintainer: Alexandr Savca, alexandr dot savca89 at gmail dot com
# Depends on: ncurses
2018-03-31 23:13:54 +02:00
# Optional: bash-completion
2018-03-31 22:39:09 +02:00
name=vifm
version=0.9.1
2018-03-31 23:41:57 +02:00
release=2
2018-03-31 22:39:09 +02:00
source=(https://github.com/$name/$name/archive/v$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
2018-03-31 23:13:54 +02:00
if ! pkginfo -i | grep '^bash-completion '; then
rm -rf $PKG/usr/share/bash-completion
fi
2018-03-31 22:39:09 +02:00
rm -rf $PKG/usr/share/doc
}