Advertisement
Guest User

PKGBUILD

a guest
Apr 17th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.53 KB | None | 0 0
  1. # Maintainer: Carsten Abele <yonk@yonk.de>
  2.  
  3. pkgname=newspost
  4. pkgver=2.1.1
  5. pkgrel=2
  6. pkgdesc="A usenet binary autoposter for unix"
  7. url="http://newspost.unixcab.org/"
  8. arch=('i686' 'x86_64')
  9. license=('GPL')
  10. depends=('glibc')
  11. optdepends=('cksfv')
  12. source=(http://newspost.unixcab.org/download/$pkgname-$pkgver.tar.gz getline.patch)
  13. md5sums=('099a69ce511f746aec88a57d03575d5f' '1caf980f0f8ad88d681ed633681b7066')
  14.  
  15. build() {
  16.     cd "$srcdir/$pkgname-$pkgver"
  17.     patch -Np1 -i $srcdir/getline.patch
  18.     make
  19.     make install PREFIX=$pkgdir/usr/
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement