# Contributor (Arch) : quantax -- contact via Arch Linux forum or AUR # Contributor (Arch) : Federico Cinelli # Maintainer (Parabola) : Aurélien DESBRIÈRES pkgname=irssi-otr-git pkgver=20090814 pkgrel=1 pkgdesc="Off-the-Record Messaging (OTR) for the Irssi IRC client." arch=('i686' 'x86_64' 'mips64el') url="http://irssi-otr.tuxfamily.org/" license=('GPL') depends=(irssi libotr git) makedepends=(cmake pkgconfig python) conflicts=(irssi-otr) provides=(irssi-otr) source=('git://git.tuxfamily.org/gitroot/irssiotr/irssiotr.git') _gitroot="git://git.tuxfamily.org/gitroot/irssiotr/irssiotr.git" _gitname="irssiotr" build() { cd "$srcdir" msg "Connecting to GIT server...." if [ -d "$_gitname" ] ; then cd "$_gitname" && git pull origin msg "The local files are updated." else git clone "$_gitroot" fi msg "GIT checkout done or server timeout" msg "Starting make..." rm -rf "$srcdir/$_gitname-build" cp -r "$srcdir/$_gitname" "${srcdir}/${_gitname}-build" cd "$srcdir/$_gitname-build" cmake -DCMAKE_INSTALL_PREFIX=/usr . cp -f LICENSE README irssi make && make DESTDIR="$pkgdir/" install }