aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gnokii/APKBUILD
blob: a0017e44fd843bc71c0587c8c9eb33cd4fe7f936 (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
71
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gnokii
pkgver=0.6.29
pkgrel=0
pkgdesc="Tools and user space driver for use with mobile phones"
url="http://www.gnokii.org/"
license="GPL"
depends=""
subpackages="$pkgname-dev $pkgname-doc libgnokii xgnokii $pkgname-smsd
	$pkgname-smsd-pgsql:pgsql $pkgname-smsd-mysql:mysql"

makedepends="gtk+-dev mysql-dev intltool libusb-compat-dev libxpm-dev
	bluez-dev libical-dev postgresql-dev"
source="http://www.gnokii.org/download/gnokii/gnokii-$pkgver.tar.bz2
	gnokii.patch"

_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
	patch -Np1 -i "$srcdir/gnokii.patch"
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--enable-security \
		--disable-unix98test
	make
}

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

libgnokii() {
	pkgdesc="gnokii shared libraries"
	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/libgnokii.so.* "$subpkgdir"/usr/lib/
}

xgnokii() {
	pkgdesk="Gtk+ gnokii application"
	mkdir -p "$subpkgdir"/usr/bin
	mv "$pkgdir"/usr/bin/xgnokii "$subpkgdir"/usr/bin/
}

smsd() {
	pkgdesc="SMS Daemon for mobile phones"
	mkdir -p "$subpkgdir"/usr/bin/
	mv "$pkgdir"/usr/bin/smsd "$subpkgdir"/usr/bin/
}

pgsql() {
	pkgdesc="SMSD plugin for PostgreSQL storage backend"
	depends="gnokii-smsd"
	mkdir -p "$subpkgdir"/usr/lib/smsd
	mv "$pkgdir"/usr/lib/smsd/*pq.so "$subpkgdir"/usr/lib/smsd/
}

mysql() {
	pkgdesc="SMSD plugin for MySQL storage backend"
	depends="gnokii-smsd"
	mkdir -p "$subpkgdir"/usr/lib/smsd
	mv "$pkgdir"/usr/lib/smsd/*mysql.so "$subpkgdir"/usr/lib/smsd/
}

md5sums="6111e0158a1129062bda6420db67c313  gnokii-0.6.29.tar.bz2
4d764727686ee34bc73489c8b1321c82  gnokii.patch"