diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/enchant/enchant_1.3.0.bb | 7 | ||||
-rw-r--r-- | recipes/libidn/libidn_1.15.bb | 19 |
2 files changed, 23 insertions, 3 deletions
diff --git a/recipes/enchant/enchant_1.3.0.bb b/recipes/enchant/enchant_1.3.0.bb index cceceebabf..85e6297464 100644 --- a/recipes/enchant/enchant_1.3.0.bb +++ b/recipes/enchant/enchant_1.3.0.bb @@ -7,7 +7,7 @@ RDEPENDS = "aspell" inherit autotools pkgconfig -PR = "r0" +PR = "r1" S = "${WORKDIR}/enchant-${PV}" @@ -15,9 +15,10 @@ 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" -export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " +FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${PN} ${libdir}/${PN}/*.so" +FILES_${PN}-dev += "${libdir}/${PN}/*{SOLIBSDEV} ${libdir}/${PN}/*.la ${libdir}/${PN}/*.a" -FILES_${PN} = "/usr/bin/* /usr/lib/enchant/*.so /usr/share/enchant /usr/lib/libenchant*.so.*" +export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " do_stage() { autotools_stage_all diff --git a/recipes/libidn/libidn_1.15.bb b/recipes/libidn/libidn_1.15.bb new file mode 100644 index 0000000000..0a68a796c7 --- /dev/null +++ b/recipes/libidn/libidn_1.15.bb @@ -0,0 +1,19 @@ +LICENSE = "LGPL" +DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group." +SECTION = "libs" +PRIORITY = "optional" +PR = "r0" + +inherit pkgconfig autotools + +SRC_URI = "${GNU_MIRROR}/${PN}/${P}.tar.gz" + +EXTRA_OECONF = " --disable-tld" + +do_configure_prepend () { + autoreconf -f -i -s +} + +do_stage () { + autotools_stage_all +} |