summaryrefslogtreecommitdiff
path: root/vifm/Pkgfile
blob: c1c66abb8c57dcce26d6b630d323863139631cb0 (plain)
    1 # Description: A ncurses based file manager with vi like keybindings
    2 # URL:         http://vifm.info
    3 # Maintainer:  Alexandr Savca, alexandr dot savca89 at gmail dot com
    4 # Depends on:  ncurses
    5 # Optional:    bash-completion
    6 
    7 name=vifm
    8 version=0.9.1
    9 release=2
   10 source=(https://github.com/$name/$name/archive/v$version.tar.gz)
   11 
   12 build() {
   13         cd $name-$version
   14 
   15         ./configure \
   16             --prefix=/usr   \
   17             --disable-nls
   18 
   19         make
   20         make DESTDIR=$PKG install
   21 
   22         if ! pkginfo -i | grep '^bash-completion '; then
   23             rm -rf $PKG/usr/share/bash-completion
   24         fi
   25 
   26         rm -rf $PKG/usr/share/doc
   27 }

Generated by cgit