blob: f0f3b00ceda48bdfc30c52b88c3d094f260580e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PR = "r1"
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/
}
|