Advertisement
Guest User

Untitled

a guest
Apr 4th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. # Maintainer: Antoine Lubineau <antoine@lubignon.info>
  2. # Contributor: Andrei "Garoth" Thorp <garoth "at the nice" gmail "dot" com>
  3. # Contributor: Héctor Acosta <hector.acosta@gmail.com>
  4.  
  5. pkgname=debhelper
  6. pkgver=9.20120322
  7. pkgrel=1
  8. pkgdesc="A collection of tools that can be used in a debian/rules file to automate common tasks"
  9. arch=('any')
  10. url="http://kitenet.net/~joey/code/debhelper/"
  11. license=('GPL2' 'GPL3')
  12. depends=('binutils' 'dpkg>=1.14.15' 'file>=3.23' 'html2text' 'man-db>=2.5.1' 'perl>=5.6.0' 'po-debconf' 'perl-timedate')
  13. makedepends=('po4a>=0.24' 'man-db>=2.5.1' 'file>=3.23' 'po4a')
  14. optdepends=('dh-make')
  15. source=("http://launchpad.net/debhelper/main/$pkgver/+download/debhelper_$pkgver.tar.gz")
  16. md5sums=('9ea56782e6396a59ec49f45f9c4a603f')
  17.  
  18. build() {
  19. cd "$srcdir/$pkgname"
  20. PATH="$PATH:/usr/bin/vendor_perl" make
  21. }
  22.  
  23. package() {
  24. cd "$srcdir/$pkgname"
  25. make DESTDIR="$pkgdir/" install
  26. }
  27.  
  28. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement