mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
Using ${DEBIAN_MIRROR} for SRC_URI doesn't work very well as that will
only contain releases that are currently in Debian. So, move all of SRC_URI
to the .bb so it can use snapshot.debian.org instead, and set
UPSTREAM_CHECK_URI to ${DEBIAN_MIRROR} so upstream release checking continues
to work.
[YOCTO #10040]
(From OE-Core rev: 8ad47832131014843e948e7d1a1aee4cd5f7a27a)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
877 B
BlitzBasic
27 lines
877 B
BlitzBasic
SUMMARY = "Convert LinuxDoc SGML source into other formats"
|
|
HOMEPAGE = "http://packages.debian.org/linuxdoc-tools"
|
|
LICENSE = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=077ef64ec3ac257fb0d786531cf26931"
|
|
|
|
DEPENDS = "groff-native openjade-native"
|
|
|
|
SRC_URI = "http://snapshot.debian.org/archive/debian/20160728T043443Z/pool/main/l/${BPN}/${BPN}_${PV}.orig.tar.gz \
|
|
file://disable_sgml2rtf.patch \
|
|
file://disable_txt_doc.patch \
|
|
file://disable_tex_doc.patch \
|
|
file://disable_dvips_doc.patch"
|
|
|
|
SRC_URI[md5sum] = "1d13d500918a7a145b0edc2f16f61dd1"
|
|
SRC_URI[sha256sum] = "7103facee18a2ea97186ca459d743d22f7f89ad4b5cd1dfd1c34f83d6bfd4101"
|
|
|
|
UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/l/linuxdoc-tools/"
|
|
inherit autotools-brokensep native
|
|
|
|
do_configure () {
|
|
oe_runconf
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' 'TMPDIR=${T}' install
|
|
}
|