blob: b855099e5280b014954d89ec97ca4bd833223f53 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Advanced front-end for dpkg"
2LICENSE = "GPLv2.0+"
3SECTION = "base"
4
Brad Bishop19323692019-04-05 15:28:33 -04005SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/${BPN}/${PV}/${BPN}_${PV}.tar.xz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006 file://use-host.patch \
7 file://makerace.patch \
8 file://no-nls-dpkg.patch \
9 file://fix-gcc-4.6-null-not-defined.patch \
10 file://truncate-filename.patch \
11 file://nodoc.patch \
12 file://disable-configure-in-makefile.patch \
13 file://disable-test.patch \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050014 file://0001-environment.mak-musl-based-systems-can-generate-shar.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015 file://0001-apt-1.2.12-Fix-musl-build.patch \
Brad Bishop19323692019-04-05 15:28:33 -040016 file://0001-Include-array.h-for-std-array.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017 "
Brad Bishop96ff1982019-08-19 13:50:42 -040018SRC_URI[md5sum] = "d30eed9304e82ea8238c854b5c5a34d9"
19SRC_URI[sha256sum] = "03ded4f5e9b8d43ecec083704b2dcabf20c182ed382db9ac7251da0b0b038059"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050022# the package is taken from snapshots.debian.org; that source is static and goes stale
23# so we check the latest upstream from a directory that does get updated
24UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/a/apt/"
25
Patrick Williamsc0f7c042017-02-23 20:41:17 -060026inherit autotools gettext useradd
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
28EXTRA_AUTORECONF = "--exclude=autopoint,autoheader"
29
30do_configure_prepend() {
31 rm -rf ${S}/buildlib/config.sub
32 rm -rf ${S}/buildlib/config.guess
33}
Patrick Williamsc0f7c042017-02-23 20:41:17 -060034
35USERADD_PACKAGES = "${PN}"
36USERADD_PARAM_${PN} = "--system --no-create-home --home-dir /nonexistent --shell /bin/false --user-group _apt"