X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/3a0f9073df7ef5b7be8c488918b552ab89efde81..1182895b41d38f3835824717c8f5d2f33dd4a3f6:/packages/dpkg/build.sh diff --git a/packages/dpkg/build.sh b/packages/dpkg/build.sh index c0b67c78..08f4183a 100755 --- a/packages/dpkg/build.sh +++ b/packages/dpkg/build.sh @@ -1,14 +1,70 @@ TERMUX_PKG_HOMEPAGE=https://packages.debian.org/dpkg TERMUX_PKG_DESCRIPTION="Debian package management system" -TERMUX_PKG_VERSION=1.18.3 -TERMUX_PKG_SRCURL=http://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_${TERMUX_PKG_VERSION}.tar.xz -TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-dselect --disable-shared --disable-start-stop-daemon --disable-largefile --disable-update-alternatives --host=${TERMUX_ARCH}-linux --without-selinux dpkg_cv_c99_snprintf=yes ac_cv_lib_selinux_setexecfilecon=no HAVE_SETEXECFILECON_FALSE=#" -TERMUX_PKG_RM_AFTER_INSTALL="lib/perl5 share/perl5 lib/dpkg/parsechangelog bin/dpkg-architecture bin/dpkg-buildflags bin/dpkg-buildpackage bin/dpkg-checkbuilddeps bin/dpkg-distaddfile bin/dpkg-genchanges bin/dpkg-gencontrol bin/dpkg-gensymbols bin/dpkg-maintscript-helper bin/dpkg-mergechangelogs bin/dpkg-name bin/dpkg-parsechangelog bin/dpkg-scanpackages bin/dpkg-scansources bin/dpkg-shlibdeps bin/dpkg-source bin/dpkg-statoverride bin/dpkg-vendor share/man/man1/dpkg-architecture.1 share/man/man1/dpkg-buildflags.1 share/man/man1/dpkg-buildpackage.1 share/man/man1/dpkg-checkbuilddeps.1 share/man/man1/dpkg-distaddfile.1 share/man/man1/dpkg-genchanges.1 share/man/man1/dpkg-gencontrol.1 share/man/man1/dpkg-gensymbols.1 share/man/man1/dpkg-maintscript-helper.1 share/man/man1/dpkg-mergechangelogs.1 share/man/man1/dpkg-name.1 share/man/man1/dpkg-parsechangelog.1 share/man/man1/dpkg-scanpackages.1 share/man/man1/dpkg-scansources.1 share/man/man1/dpkg-shlibdeps.1 share/man/man1/dpkg-source.1 share/man/man1/dpkg-vendor.1 share/man/man8/dpkg-statoverride.8 share/man/man3" +TERMUX_PKG_VERSION=1.18.22 +TERMUX_PKG_SRCURL=https://mirrors.kernel.org/debian/pool/main/d/dpkg/dpkg_${TERMUX_PKG_VERSION}.tar.xz +TERMUX_PKG_SHA256=eaf2ae88eae71f164167f75e9229af87fa9451bc58966fdec40db265b146ad69 +TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" +ac_cv_lib_selinux_setexecfilecon=no +--disable-dselect +--disable-largefile +--disable-shared +--disable-start-stop-daemon +--disable-update-alternatives +dpkg_cv_c99_snprintf=yes +HAVE_SETEXECFILECON_FALSE=# +--host=${TERMUX_ARCH}-linux +--without-libbz2 +--without-selinux +" +TERMUX_PKG_RM_AFTER_INSTALL=" +bin/dpkg-architecture +bin/dpkg-buildflags +bin/dpkg-buildpackage +bin/dpkg-checkbuilddeps +bin/dpkg-distaddfile +bin/dpkg-genchanges +bin/dpkg-gencontrol +bin/dpkg-gensymbols +bin/dpkg-maintscript-helper +bin/dpkg-mergechangelogs +bin/dpkg-name +bin/dpkg-parsechangelog +bin/dpkg-scanpackages +bin/dpkg-scansources +bin/dpkg-shlibdeps +bin/dpkg-source +bin/dpkg-statoverride +bin/dpkg-vendor +lib/dpkg/parsechangelog +lib/perl5 +share/dpkg +share/man/man1/dpkg-architecture.1 +share/man/man1/dpkg-buildflags.1 +share/man/man1/dpkg-buildpackage.1 +share/man/man1/dpkg-checkbuilddeps.1 +share/man/man1/dpkg-distaddfile.1 +share/man/man1/dpkg-genchanges.1 +share/man/man1/dpkg-gencontrol.1 +share/man/man1/dpkg-gensymbols.1 +share/man/man1/dpkg-maintscript-helper.1 +share/man/man1/dpkg-mergechangelogs.1 +share/man/man1/dpkg-name.1 +share/man/man1/dpkg-parsechangelog.1 +share/man/man1/dpkg-scanpackages.1 +share/man/man1/dpkg-scansources.1 +share/man/man1/dpkg-shlibdeps.1 +share/man/man1/dpkg-source.1 +share/man/man1/dpkg-statoverride.1 +share/man/man1/dpkg-vendor.1 +share/man/man3 +share/man/man5 +share/perl5 +" # with the extract.c.patch we remove the -p and --warning=no-timestamp tar options so we can use busybox tar -TERMUX_PKG_DEPENDS="busybox, libbz2, liblzma" +TERMUX_PKG_DEPENDS="busybox, liblzma" TERMUX_PKG_ESSENTIAL=yes termux_step_pre_configure () { export TAR=tar # To make sure dpkg tries to use "tar" instead of e.g. "gnutar" (which happens when building on OS X) - perl -p -i -e "s/TERMUX_ARCH/$TERMUX_ARCH/" $TERMUX_PKG_SRCDIR/configure + perl -p -i -e "s/TERMUX_ARCH/$TERMUX_ARCH/" $TERMUX_PKG_SRCDIR/configure }