blob: 50c4d8484a24d7a8ee5ca88a7867c792b3a4c254 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Advanced front-end for dpkg"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04002DESCRIPTION = "Provides command-line tools for searching and managing as well \
3as querying information about packages as a low-level access to all features \
4of the libapt-pkg library."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005LICENSE = "GPLv2.0+"
6SECTION = "base"
7
Brad Bishop19323692019-04-05 15:28:33 -04008SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/${BPN}/${PV}/${BPN}_${PV}.tar.xz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009 file://use-host.patch \
10 file://makerace.patch \
11 file://no-nls-dpkg.patch \
12 file://fix-gcc-4.6-null-not-defined.patch \
13 file://truncate-filename.patch \
14 file://nodoc.patch \
15 file://disable-configure-in-makefile.patch \
16 file://disable-test.patch \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050017 file://0001-environment.mak-musl-based-systems-can-generate-shar.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018 file://0001-apt-1.2.12-Fix-musl-build.patch \
Brad Bishop19323692019-04-05 15:28:33 -040019 file://0001-Include-array.h-for-std-array.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 "
Brad Bishop96ff1982019-08-19 13:50:42 -040021SRC_URI[md5sum] = "d30eed9304e82ea8238c854b5c5a34d9"
22SRC_URI[sha256sum] = "03ded4f5e9b8d43ecec083704b2dcabf20c182ed382db9ac7251da0b0b038059"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050025# the package is taken from snapshots.debian.org; that source is static and goes stale
26# so we check the latest upstream from a directory that does get updated
27UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/a/apt/"
28
Patrick Williamsc0f7c042017-02-23 20:41:17 -060029inherit autotools gettext useradd
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030
31EXTRA_AUTORECONF = "--exclude=autopoint,autoheader"
32
33do_configure_prepend() {
34 rm -rf ${S}/buildlib/config.sub
35 rm -rf ${S}/buildlib/config.guess
36}
Patrick Williamsc0f7c042017-02-23 20:41:17 -060037
38USERADD_PACKAGES = "${PN}"
39USERADD_PARAM_${PN} = "--system --no-create-home --home-dir /nonexistent --shell /bin/false --user-group _apt"