Advertisement
Guest User

[HASCIICAM] By SpepS

a guest
Mar 5th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # Maintainer : schuay <jakob.gruber@gmail.com>
  2. # Contributor: rennero <rennero@bastardi.net>
  3. # Contributor: SpepS <dreamspepser at yahoo dot it>
  4.  
  5. pkgname=hasciicam
  6. pkgver=1.1.1
  7. pkgrel=1
  8. pkgdesc="Renders video input as ascii (either to the terminal, to a text file, or a live webpage)"
  9. arch=('i686' 'x86_64')
  10. url="http://ascii.dyne.org/"
  11. license=('GPL')
  12. depends=('aalib' 'libv4l')
  13. install="$pkgname.install"
  14. source=("ftp://ftp.dyne.org/hasciicam/releases/${pkgname}_$pkgver.orig.tar.gz")
  15. md5sums=('2c36dbde02424a755a6230465b31da3b')
  16.  
  17. build() {
  18. cd "$srcdir/$pkgname-$pkgver"
  19.  
  20. # install icons in /usr/share/pixmaps
  21. sed -i "s|icons|pixmaps|g" share/Makefile.*
  22.  
  23. ./configure --prefix=/usr
  24. make
  25. }
  26.  
  27. package() {
  28. cd "$srcdir/$pkgname-$pkgver"
  29.  
  30. make prefix="$pkgdir/usr" install
  31.  
  32. # Remove unneeded debian menu
  33. rm -rf "$pkgdir/usr/share/menu"
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement