summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4b98e2e424cc4c2097741cad819e301c7754ce62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Anastasios Vacharakis <archlinux@vacharakis.de>
pkgname=xmppcd-git
pkgver=1.0
pkgrel=1
pkgdesc="Small XMPP client daemon for use in embedded systems ( OpenWRT etc. )."
arch=('i686' 'x86_64')
url="https://github.com/stanson-ch/xmppcd"
license=('GPL')
depends=('libstrophe')
source=("$pkgname-$pkgver::git+https://github.com/stanson-ch/xmppcd.git")
md5sums=("SKIP")

build() {
        cd "$srcdir/$pkgname-$pkgver"
	autoreconf --install
	./configure --prefix=/usr
        make
}

package() {
        cd "$srcdir/$pkgname-$pkgver"
        make DESTDIR="$pkgdir/" install
}