contrib/vifm/Pkgfile

29 lines
711 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
2019-08-26 15:43:46 +02:00
version=0.10.1
release=1
source=(https://github.com/$name/$name/archive/v$version/$name-v$version.tar.gz)
2018-03-31 22:39:09 +02:00
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
2019-08-26 15:43:46 +02:00
rm -rf $PKG/usr/share/vifm/vifm-media-osx
2018-03-31 22:39:09 +02:00
rm -rf $PKG/usr/share/doc
}