Commit eb50abe7 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

debianutils: new package



[Thomas: add optional dependency on Busybox, because debianutils
installs its own version of which, so we need to override the Busybox
one.]

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 44d15563
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1204,6 +1204,7 @@ endif
	source "package/cpuload/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
	source "package/dcron/Config.in"
	source "package/debianutils/Config.in"
endif
	source "package/dsp-tools/Config.in"
	source "package/ftop/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DEBIANUTILS
	bool "debianutils"
	depends on BR2_USE_MMU # fork()
	help
	  Miscellaneous utilities specific to Debian.

	  https://tracker.debian.org/pkg/debianutils
+2 −0
Original line number Diff line number Diff line
# From http://ftp.de.debian.org/debian/pool/main/d/debianutils/debianutils_4.4.dsc
sha256	190850cdd6b5302e0a1ba1aaed1bc7074d67d3bd8d04c613f242f7145afa53a6	debianutils_4.4.tar.gz
+16 −0
Original line number Diff line number Diff line
################################################################################
#
# debianutils
#
################################################################################

DEBIANUTILS_VERSION = 4.4
DEBIANUTILS_SOURCE = debianutils_$(DEBIANUTILS_VERSION).tar.gz
DEBIANUTILS_SITE = http://snapshot.debian.org/archive/debian/20130728T034252Z/pool/main/d/debianutils
DEBIANUTILS_CONF_OPTS = --exec-prefix=/
# Make sure we override the busybox tools, such as which
DEBIANUTILS_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox)
DEBIANUTILS_LICENSE = GPLv2+, SMAIL (savelog)
DEBIANUTILS_LICENSE_FILES = debian/copyright

$(eval $(autotools-package))