aboutsummaryrefslogtreecommitdiffstats
path: root/main/asterisk-audio-konf/APKBUILD
blob: 876ce76204566e4e0cc37b2e81c5de017c3c7db7 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Contributor: 
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=asterisk-audio-konf
_basever=0
_gitver=101026
pkgver=${_basever}_git${_gitver}
pkgrel=0
pkgdesc="A fork of AppKonference focused entirely on audio conferencing"
url="http://github.com/jthomerson/AsteriskAudioKonf/"
arch="x86 x86_64"
license="GPL"
depends=
makedepends="asterisk-dev"
install=
subpackages=
_snapfile="$pkgname-$pkgver.tar.bz2"
source="http://dev.alpinelinux.org/~tteras/$_snapfile
	"

_gitver=101026
_giturl="git://github.com/jthomerson/AsteriskAudioKonf.git"


_builddir="$srcdir"/$pkgname/konference


snapshot() {
	_gitver=$(date +%y%m%d)
	pkgver=${_basever}_git$_gitver
	_snapfile="$pkgname-$pkgver.tar.bz2"

	if [ -d "$SRCDEST"/$pkgname ]; then
		cd "$SRCDEST"/$pkgname
		git pull --rebase || return 1
	else
		cd "$SRCDEST"
		git clone $_giturl $pkgname
	fi
	cd "$SRCDEST"
	tar -jcf $_snapfile $pkgname
	
	pkgrel=0
	sed -i -e "s/^_gitver=.*/_gitver=${_gitver}/" \
		-e "s/^pkgrel=.*/pkgrel=$pkgrel/" \
		"$startdir"/APKBUILD
	checksum
}

prepare() {
	cd "$_builddir"

	# Enable Speex16 support
	sed -e '/CPPFLAGS += -DAC_USE_SPEEX16/s/^\# *//' -i Makefile

	#for i in "$srcdir"/*.patch; do
	#	patch -p1 -i "$i" || return 1
	#done
}

build() {
	cd "$_builddir"
	make || return 1
}

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

md5sums="9f560cae3afc363282db60e0d69c6643  asterisk-audio-konf-0_git101026.tar.bz2"