blob: 2487826998bec4b7337eeb656cb3de2a78763a6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
HOMEPAGE = "http://tapioca-voip.sourceforge.net/wiki/index.php/Tapioca"
LICENSE = "LGPL"
DEPENDS = "glib-2.0 dbus"
inherit autotools pkgconfig
SRC_URI = "${SOURCEFORGE_MIRROR}/tapioca-voip/${P}.tar.gz"
FILES_${PN} += "${datadir}/dbus*"
do_stage () {
autotools_stage_all
install -d ${STAGING_INCDIR}/tapioca/core/
install -d ${STAGING_INCDIR}/tapioca/client/
install -m 644 tapioca/core/*.h ${STAGING_INCDIR}/tapioca/core/
install -m 644 tapioca/client/*.h ${STAGING_INCDIR}/tapioca/client/
}
|