Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Dec 18th, 2010  |  syntax: None  |  size: 0.85 KB  |  hits: 71  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Maintainer:  TDY <tdy@gmx.com>
  2. # Contributor: Dennis Craven <dcraven@gmail.com>
  3. # Contributor: CRT <crt.011@gmail.com>
  4.  
  5. pkgname=cursetheweather
  6. pkgver=0.6
  7. pkgrel=2
  8. pkgdesc="An ncurses client for retrieving weather.com forecasts"
  9. arch=('i686' 'x86_64')
  10. url="http://opensource.hld.ca/trac.cgi/wiki/CurseTheWeather/"
  11. license=('GPL')
  12. depends=('ncurses' 'python')
  13. source=(http://opensource.hld.ca/trac.cgi/export/317/trunk/ctw/dist/CurseTheWeather-$pkgver.tar.gz
  14.         https://github.com/variablenix/patch/blob/master/cursetheweather-0.6-2.patch)
  15. md5sums=('9594004e2483a2cc44fc8c420a7316e1'
  16.          'a1bc153b379c4b894106fdcb75777eec')
  17.  
  18. build() {
  19.   cd "$srcdir/CurseTheWeather-$pkgver"
  20.   sleep 1
  21.   patch -Np1 -i ../cursetheweather-0.6-2.patch
  22.   python setup.py install --prefix=/usr --root="$pkgdir"
  23.   ln -sf ctw "$pkgdir/usr/bin/cursetheweather"
  24. }