diff options
Diffstat (limited to 'pcr/irssi-otr-git/PKGBUILD')
-rw-r--r-- | pcr/irssi-otr-git/PKGBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/pcr/irssi-otr-git/PKGBUILD b/pcr/irssi-otr-git/PKGBUILD new file mode 100644 index 000000000..b4d19d97a --- /dev/null +++ b/pcr/irssi-otr-git/PKGBUILD @@ -0,0 +1,43 @@ +# Contributor (Arch) : quantax -- contact via Arch Linux forum or AUR +# Contributor (Arch) : Federico Cinelli <cinelli.federico@gmail.com> +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> + +pkgname=irssi-otr-git +pkgver=20090814 +pkgrel=1 +pkgdesc="Off-the-Record Messaging (OTR) for the Irssi IRC client." +arch=('i686' 'x86_64') +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 +} + |