summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-12 09:02:09 +0200
committerAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-12 09:02:09 +0200
commit7ea31861e8f5b8e8c77be5d68c62c38a319c3223 (patch)
treee7a4fb6d1e8c4b5140cb31430bd93daf47403c95 /pcr
parent1b51456c72d5a2c734935c1a23d02d4fdeca74d4 (diff)
irssi-otr-git
Diffstat (limited to 'pcr')
-rw-r--r--pcr/irssi-otr-git/PKGBUILD43
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
+}
+