summaryrefslogtreecommitdiffstats
path: root/testing/coova-chilli/APKBUILD
blob: 047c6fbf105ffd632a1f3ab7b0058aa83178a0f7 (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
44
45
46
# Contributor: grharry
# Maintainer: 

# TODO: fix init.d script

pkgname=coova-chilli
pkgver=1.2.2
pkgrel=0
pkgdesc="CoovaChilli is an open source access controller for wireless LAN"
url="http://www.coova.org/"
license="GPL"
depends=
makedepends="perl openssl-dev autoconf automake libtool"
install= 
subpackages="$pkgname-doc $pkgname-dev"
source="http://ap.coova.org/chilli/coova-chilli-$pkgver.tar.gz
	coova-chilli-ssl.patch"

_builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd $_builddir
	patch -p1 -i ../coova-chilli-ssl.patch || return 1
	aclocal && autoconf && automake && libtoolize || return 1
}

build() {
	cd $_builddir
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var/run \
		--libdir=/usr/lib \
		--sysconfdir=/etc \
		--with-openssl
	make -j1  || return 1
}

package() {
	cd $_builddir
	make DESTDIR="$pkgdir" install
}

md5sums="44042e26c3b3c6e64a9a8769328b437d  coova-chilli-1.2.2.tar.gz
4135e6e19bafdad777b8ca7388ff4101  coova-chilli-ssl.patch"