blob: 85e629746408352398b3476ad2525ac0700283e8 (
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
|
DESCRIPTION = "Enchant Spell checker API Library"
PRIORITY = "optional"
SECTION = "libs"
LICENSE = "LGPL"
DEPENDS = "aspell"
RDEPENDS = "aspell"
inherit autotools pkgconfig
PR = "r1"
S = "${WORKDIR}/enchant-${PV}"
SRC_URI = "http://www.abisource.com/downloads/enchant/${PV}/enchant-${PV}.tar.gz"
EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${layout_prefix} --enable-aspell --disable-binreloc"
FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${PN} ${libdir}/${PN}/*.so"
FILES_${PN}-dev += "${libdir}/${PN}/*{SOLIBSDEV} ${libdir}/${PN}/*.la ${libdir}/${PN}/*.a"
export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ "
do_stage() {
autotools_stage_all
}
|