Advertisement
Guest User

Untitled

a guest
Jul 26th, 2010
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # Contributor: Andrea Scarpino <andrea@archlinux.org>
  2.  
  3. pkgname=pacbuilder-svn
  4. pkgver=138
  5. pkgrel=1
  6. pkgdesc="A tool to massively recompile archlinux packages from sources"
  7. arch=('any')
  8. url="http://code.google.com/p/pacbuilder/"
  9. license=('GPL3')
  10. backup=('etc/pacbuilder.conf')
  11. depends=('rsync')
  12. makedepends=('subversion')
  13. source=()
  14. md5sums=()
  15.  
  16. _svntrunk=http://pacbuilder.googlecode.com/svn/trunk/
  17. _svnmod=pacbuilder-read-only
  18.  
  19. build() {
  20. cd "$srcdir"
  21.  
  22. svn co $_svntrunk $_svnmod
  23.  
  24.  
  25. msg "SVN checkout done or server timeout"
  26. msg "Starting make..."
  27.  
  28. cd $_svnmod
  29.  
  30. make DESTDIR="$pkgdir" install || return 1
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement