summaryrefslogtreecommitdiff
path: root/pcr/irssi-otr-git/PKGBUILD
blob: 54c8a23363455171e77169b2623dec5a535cdf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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' '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
}