blob: 592dbb92e2776a508b56615c77abd015fa46811d [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001SUMMARY = "Utility scripts for internationalizing XML"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002HOMEPAGE = "https://launchpad.net/intltool"
3DESCRIPTION = "Utility scripts for internationalizing XML. This tool automatically extracts translatable strings from oaf, glade, bonobo ui, nautilus theme and other XML files into the po files."
Patrick Williamsc0f7c042017-02-23 20:41:17 -06004SECTION = "devel"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
7
Patrick Williamsc0f7c042017-02-23 20:41:17 -06008SRC_URI = "http://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz \
9 file://intltool-nowarn.patch \
10 file://perl-522-deprecations.patch \
11 file://remove-perl-check.patch \
12 file://noperlcheck.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014SRC_URI[md5sum] = "12e517cac2b57a0121cda351570f1e63"
15SRC_URI[sha256sum] = "67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016
17UPSTREAM_CHECK_URI = "https://launchpad.net/intltool/trunk/"
18
19DEPENDS = "libxml-parser-perl-native"
20RDEPENDS_${PN} = "gettext-dev libxml-parser-perl"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021DEPENDS_class-native = "libxml-parser-perl-native gettext-native"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060022
23inherit autotools pkgconfig perlnative
24
25export PERL = "${bindir}/env perl"
26PERL_class-native = "/usr/bin/env nativeperl"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027PERL_class-nativesdk = "/usr/bin/env perl"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028
29# gettext is assumed to exist on the host
30RDEPENDS_${PN}_class-native = "libxml-parser-perl-native"
31RRECOMMENDS_${PN} = "perl-modules"
32RRECOMMENDS_${PN}_class-native = ""
33
34FILES_${PN}-dev = ""
35FILES_${PN} += "${datadir}/aclocal"
36
37INSANE_SKIP_${PN} += "dev-deps"
38
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039BBCLASSEXTEND = "native nativesdk"