home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / main.aap < prev    next >
Encoding:
Text File  |  2003-05-01  |  600 b   |  23 lines

  1. # A-A-P recipe for Vim
  2. #
  3. # Usage: aap fetch    obtain latest version of Vim
  4. #     aap all    build Vim
  5. #     aap install    install Vim
  6.  
  7. # Location of this recipe, get a new version when wanted.
  8. AAPROOT = http://www.a-a-p.org/vim
  9. :recipe {fetch = $AAPROOT/vim/main.aap}
  10.  
  11. fetch:
  12.     @if os.path.exists("CVS"):
  13.     # Fetching with CVS is simple, CVS even remembers the server
  14.     # name for us.
  15.     :fetch {fetch = cvs://} .
  16.     @else:
  17.     # Fetch by applying patches needs to be done in the upper dir.
  18.     :execute ../main.aap {fetch = $AAPROOT/main.aap} fetch
  19.  
  20. # All building is done in the source directory.
  21. :child src/main.aap
  22.  
  23.