blob: 77be30758d55b327575de5e57aa93ac8bc1095a3 [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"
Patrick Williams213cb262021-08-07 19:21:33 -050020RDEPENDS:${PN} = "gettext-dev libxml-parser-perl"
21DEPENDS: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"
Patrick Williams213cb262021-08-07 19:21:33 -050026PERL:class-native = "/usr/bin/env nativeperl"
27PERL:class-nativesdk = "/usr/bin/env perl"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028
29# gettext is assumed to exist on the host
Patrick Williams213cb262021-08-07 19:21:33 -050030RDEPENDS:${PN}:class-native = "libxml-parser-perl-native"
31RRECOMMENDS:${PN} = "perl-modules"
32RRECOMMENDS:${PN}:class-native = ""
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033
Patrick Williams213cb262021-08-07 19:21:33 -050034FILES:${PN}-dev = ""
35FILES:${PN} += "${datadir}/aclocal"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060036
Patrick Williams213cb262021-08-07 19:21:33 -050037INSANE_SKIP:${PN} += "dev-deps"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060038
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039BBCLASSEXTEND = "native nativesdk"