README.debian 962 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # For preparing GRASS Debian package run
  2. svn co svn://svn.debian.org/pkg-grass/packages/grass/trunk/debian debiangis
  3. mv debiangis/* .
  4. # in this directory. It will download latest debian configuration files
  5. # from debian Subversion server (http://svn.debian.org).
  6. # The grass debian/ dir is under SVN control so you can't just checkout over
  7. # the top of it from another repo.
  8. # You may need to adapt it to work with GRASS 7 (it's for the latest stable)
  9. # After that, you can build current version of GRASS with
  10. dpkg-buildpackage -rfakeroot
  11. # or
  12. debuild binary
  13. # or
  14. debuild -i -uc -us -b -j2
  15. # in main GRASS source directory. After the packages are generated, you can
  16. # install them with
  17. dpkg -i ../*grass*deb
  18. =====
  19. fixme: DebianGIS has moved to git,
  20. sudo apt-get install git-core
  21. mkdir git && cd git
  22. git clone git://git.debian.org/git/pkg-grass/grass.git
  23. ln -s grass/debian debiangis
  24. how to download just the grass/debian/ directory from that?