1. # Contributor: Yuren Ju <yurenju@gmail.com>
  2. pkgname=wallbox
  3. pkgver=0.4.2
  4. pkgrel=1
  5. pkgdesc="Facebook notification for linux"
  6. arch=('any')
  7. url="http://github.com/yurenju/wallbox"
  8. license=('GPL')
  9. depends=('python' 'pygtk' 'pyfacebook-git')
  10. makedepends=('setuptools' 'gnome-common')
  11. source=(http://github.com/downloads/yurenju/wallbox/$pkgname-$pkgver.tar.gz)
  12. noextract=()
  13. md5sums=('688374cdfc2054149f7470132eb5a844')
  14.  
  15. build() {
  16.   cd "$srcdir/$pkgname-$pkgver"
  17.   ./autogen.sh --prefix="/usr"
  18.   make
  19.   make DESTDIR=$pkgdir install
  20. }
  21.  
  22. # vim:set ts=2 sw=2 et: