1 # Maintainer: Nicolas Paris <nicolas.caen@gmail.com>
5 pkgdesc="It's a top-like program for monitoring stories on hacker news (news.ycombinator.com) from the console (fork from pkrumins)"
7 url="https://github.com/Nic0/hacker-top"
9 depends=('python2-distribute' 'python-beautifulsoup')
12 _gitroot="git://github.com/Nic0/hacker-top.git"
17 msg "Connecting to GIT server...."
19 if [ -d $_gitname ] ; then
20 cd $_gitname && git pull origin
21 msg "The local files are updated."
23 git clone $_gitroot $_gitname
26 msg "GIT checkout done or server timeout"
27 msg "Starting make..."
29 rm -rf "$srcdir/$_gitname-build"
30 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
31 cd "$srcdir/$_gitname-build"
33 python2 setup.py build
38 cd "$srcdir/$_gitname-build"
39 python2 setup.py install --prefix=/usr --root="$pkgdir"