2014-05-27 08:53:30 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-06-30 18:04:08 +02:00
|
|
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
2017-06-21 09:10:27 +02:00
|
|
|
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
2014-05-27 08:53:30 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages busybox)
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages admin)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 20:40:01 +02:00
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages perl))
|
2014-05-27 08:53:30 +02:00
|
|
|
|
|
|
|
(define-public busybox
|
|
|
|
(package
|
|
|
|
(name "busybox")
|
2017-06-21 09:10:27 +02:00
|
|
|
(version "1.26.2")
|
2014-05-27 08:53:30 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-06-30 18:04:08 +02:00
|
|
|
"https://www.busybox.net/downloads/" name "-"
|
2014-05-27 08:53:30 +02:00
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-06-21 09:10:27 +02:00
|
|
|
"05mg6rh5smkzfwqfcazkpwy6h6555llsazikqnvwkaf17y8l8gns"))))
|
2014-05-27 08:53:30 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2017-06-21 09:13:31 +02:00
|
|
|
'(#:phases
|
2016-06-30 18:09:40 +02:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda _ (zero? (system* "make" "defconfig"))))
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
2017-06-21 09:13:31 +02:00
|
|
|
(substitute* '("testsuite/du/du-s-works"
|
|
|
|
"testsuite/du/du-works")
|
2016-06-30 18:09:40 +02:00
|
|
|
(("/bin") "/etc")) ; there is no /bin but there is a /etc
|
2014-05-27 08:53:30 +02:00
|
|
|
|
2017-06-21 09:13:31 +02:00
|
|
|
;; There is no /usr/bin or /bin - replace it with /gnu/store
|
|
|
|
(substitute* "testsuite/cpio.tests"
|
2016-06-30 18:09:40 +02:00
|
|
|
(("/usr/bin") (%store-directory))
|
|
|
|
(("usr") (car (filter (negate string-null?)
|
2017-06-21 09:13:31 +02:00
|
|
|
(string-split (%store-directory) #\/)))))
|
2014-05-27 08:53:30 +02:00
|
|
|
|
2017-06-21 09:13:31 +02:00
|
|
|
(substitute* "testsuite/date/date-works-1"
|
2016-06-30 18:09:40 +02:00
|
|
|
(("/bin/date") (which "date")))
|
2014-05-27 08:53:30 +02:00
|
|
|
|
2017-06-21 09:13:31 +02:00
|
|
|
;; The pidof tests assume that pid 1 is called "init" but that is not
|
|
|
|
;; true in guix build environment
|
|
|
|
(substitute* "testsuite/pidof.tests"
|
2016-06-30 18:09:40 +02:00
|
|
|
(("-s init") "-s $(cat /proc/1/comm)"))
|
2017-06-21 09:13:31 +02:00
|
|
|
|
|
|
|
;; This test cannot possibly pass.
|
|
|
|
;; It is trying to test that "which ls" returns "/bin/ls" when PATH is not set.
|
|
|
|
;; However, this relies on /bin/ls existing. Which it does not in guix.
|
|
|
|
(delete-file "testsuite/which/which-uses-default-path")
|
|
|
|
(rmdir "testsuite/which")
|
2014-05-27 08:53:30 +02:00
|
|
|
|
2017-06-21 09:13:31 +02:00
|
|
|
(zero? (system* "make"
|
|
|
|
;; "V=1"
|
|
|
|
"SKIP_KNOWN_BUGS=1"
|
|
|
|
"SKIP_INTERNET_TESTS=1"
|
|
|
|
"check"))))
|
2016-06-30 18:09:40 +02:00
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero?
|
|
|
|
(system* "make"
|
|
|
|
(string-append "CONFIG_PREFIX=" out)
|
|
|
|
"install"))))))))
|
2014-05-27 08:53:30 +02:00
|
|
|
(native-inputs `(("perl" ,perl) ; needed to generate the man pages (pod2man)
|
|
|
|
;; The following are needed by the tests.
|
|
|
|
("inetutils" ,inetutils)
|
2016-06-30 18:04:08 +02:00
|
|
|
("which" ,(@ (gnu packages base) which))
|
2014-05-27 08:53:30 +02:00
|
|
|
("zip" ,zip)))
|
|
|
|
(synopsis "Many common UNIX utilities in a single executable")
|
|
|
|
(description "BusyBox combines tiny versions of many common UNIX utilities
|
2014-11-18 18:22:06 +01:00
|
|
|
into a single small executable. It provides a fairly complete environment for
|
|
|
|
any small or embedded system.")
|
2016-06-30 18:04:08 +02:00
|
|
|
(home-page "https://www.busybox.net")
|
2014-05-27 08:53:30 +02:00
|
|
|
;; Some files are gplv2+
|
|
|
|
(license gpl2)))
|