Advertisement
Guest User

PKGBUILD

a guest
Apr 22nd, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 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. source=(http://newspost.unixcab.org/download/$pkgname-$pkgver.tar.gz getline.patch)
  12. md5sums=('099a69ce511f746aec88a57d03575d5f' '1caf980f0f8ad88d681ed633681b7066')
  13.  
  14. build() {
  15.     cd "$srcdir/$pkgname-$pkgver"
  16.     patch -Np1 -i $srcdir/getline.patch
  17. }
  18.  
  19. package() {
  20.     cd "$srcdir/$pkgname-$pkgver"
  21.     make
  22.     make install PREFIX=$pkgdir/usr/
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement