mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
(From OE-Core rev: 76b32bbe16c790ed81fffe37e67d80d1ec754e4e) Signed-off-by: Ionut Radu <ionutx.radu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
543 B
BlitzBasic
19 lines
543 B
BlitzBasic
DEPENDS = "curl db"
|
|
RDEPENDS_${PN} = "dpkg"
|
|
LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
require apt.inc
|
|
|
|
SRC_URI[md5sum] = "85781bb39901d6fb79c37ca307929594"
|
|
SRC_URI[sha256sum] = "dcef6fc33948d5e430d337ad6326bf7ac3d06b14d99ede176809461ac12b4c6f"
|
|
|
|
require apt-package.inc
|
|
|
|
FILES_${PN} += "${bindir}/apt-key"
|
|
apt-manpages += "doc/apt-key.8"
|
|
|
|
do_install_append() {
|
|
#Write the correct apt-architecture to apt.conf
|
|
APT_CONF=${D}/etc/apt/apt.conf
|
|
echo 'APT::Architecture "${DPKG_ARCH}";' > ${APT_CONF}
|
|
}
|