forked from ports/contrib
23 lines
494 B
Plaintext
23 lines
494 B
Plaintext
|
# 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
|
||
|
|
||
|
name=vifm
|
||
|
version=0.9.1
|
||
|
release=1
|
||
|
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
|
||
|
|
||
|
rm -rf $PKG/usr/share/doc
|
||
|
}
|