summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6e7f7e3c13ad9b28c8f87eb94623a63a7c719ce4 (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
# Maintainer: Christian Hesse <mail@eworm.de>

pkgname=tox-prpl
pkgver=0.5.1
pkgrel=1
pkgdesc='Tox protocol plugin for pidgin / libpurple'
arch=('i686' 'x86_64')
url='http://tox.dhs.org/'
license=('GPL3')
depends=('libpurple' 'toxcore')
makedepends=('git' 'libconfig')
optdepends=('pidgin: Use tox in pidgin messenger')
options=('!libtool')
conflicts=('tox-prpl')
provides=('tox-prpl')
source=('git://github.com/jin-eld/tox-prpl.git')
sha256sums=('SKIP')

build() {
	cd tox-prpl/

	autoreconf -i
	./configure --prefix=/usr
	make
}

package() {
	cd tox-prpl/

	make DESTDIR="$pkgdir" install
}