1 # Maintainer: kiooeht <kiooeht@gmail.com>
5 pkgdesc="Instant messaging client copying the look and feel of clients from Andrew Hussie's webcomic Homestuck"
7 url="https://github.com/kiooeht/pesterchum"
10 depends=('python2>=2.6' 'python2-pyqt>=4.6' 'python-pygame')
12 optdepends=('python-notify: libnotify notication option'
13 'twmn: extra notification option')
14 provides=('pesterchum')
15 conflicts=('pesterchum')
23 md5sums=() #generate with 'makepkg -g'
25 _gitroot=git://github.com/kiooeht/pesterchum.git
30 msg "Connecting to GIT server...."
32 if [[ -d "$_gitname" ]]; then
33 cd "$_gitname" && git pull origin
34 msg "The local files are updated."
36 git clone --depth=1 "$_gitroot" "$_gitname"
39 msg "GIT checkout done or server timeout"
40 msg "Starting build..."
42 rm -rf "$srcdir/$_gitname-build"
43 cp -r $srcdir/$_gitname $srcdir/$_gitname-build
44 cd $srcdir/$_gitname-build
50 cd "$srcdir/$_gitname-build"
52 make PYTHON2_CMD=/usr/bin/python2 PREFIX=/usr DESTDIR="${pkgdir}" install
55 # vim:set ts=2 sw=2 et: