Advertisement
Guest User

nzbget-svn PKGBUILD (v1)

a guest
Jul 28th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.93 KB | None | 0 0
  1. # $Id$
  2. # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
  3. # Contributor: Alexander Rødseth <rodseth@gmail.com>
  4. # Contributor: beta992 <beta992@gmail.com>
  5.  
  6. pkgname=nzbget-svn
  7. pkgver=1070
  8. pkgrel=1
  9. pkgdesc="Download from Usenet using .nzb files"
  10. arch=('x86_64' 'i686')
  11. url="http://nzbget.sourceforge.net/"
  12. license=('GPL')
  13. depends=('libpar2-git' 'libsigc++' 'libxml2' 'python')
  14. makedepends=('svn' 'autoconf' 'automake')
  15. provides=('nzbget')
  16. conflicts=('nzbget')
  17. source=('nzbget::svn://svn.code.sf.net/p/nzbget/code/')
  18. sha512sums=('SKIP')
  19.  
  20. build() {
  21.   cd "$srcdir/${pkgname%-*}/trunk"
  22.  
  23.   ./configure --prefix='/usr' --sbindir='/usr/bin' --enable-parcheck --with-tlslib=OpenSSL
  24.   make
  25. }
  26.  
  27. package() {
  28.   cd "$srcdir/${pkgname%-*}/trunk"
  29.  
  30.   make DESTDIR="${pkgdir}" install
  31.  
  32.   install -d "$pkgdir/usr/share/nzbget"
  33.   install -m644 -t "$pkgdir/usr/share/nzbget" AUTHORS ChangeLog README
  34. }
  35.  
  36. # vim: ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement