Advertisement
Guest User

Untitled

a guest
Jun 17th, 2013
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 KB | None | 0 0
  1. # Contributor: Gernot Pansy <notz@gmx.at>
  2. # Contributor:  <erm67@yahoo.it>
  3. # Contributor:  Antonio Orefice <kokoko3k@gmail.com>
  4.  
  5. pkgname=dvbsnoop
  6. pkgver=1.4.50
  7. arch=('i686' 'x86_64')
  8. pkgrel=2
  9. license=('GPL')
  10. pkgdesc="dvbsnoop is a DVB / MPEG stream analyzer program, which enables you to watch (live) stream information in human readable form"
  11. url="http://dvbsnoop.sourceforge.net/"
  12. source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" )
  13. md5sums=('68a5618c95b4372eea9ac5ec5005f299')
  14. depends=('glibc')
  15.  
  16. build() {
  17.     cd $srcdir/$pkgname-$pkgver
  18.     ./configure --prefix=/usr --mandir=/usr/share/man
  19.     make
  20. }
  21.  
  22. package() {
  23.     cd $srcdir/$pkgname-$pkgver
  24.     make DESTDIR=$pkgdir install
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement