summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-20 17:05:49 +0100
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-20 17:05:49 +0100
commit154acff6deb4e95a30f3ca162d9756531ce3e936 (patch)
treef9ff714de8ecbbc5c8616238c6e5ca8144077774
parentf7010e4f838d2653a11b58af9b5807add8e11db2 (diff)
downloadmidipix_build-154acff6deb4e95a30f3ca162d9756531ce3e936.tar.bz2
midipix_build-154acff6deb4e95a30f3ca162d9756531ce3e936.tar.xz
subr/build_init.subr:buildp_init_prereqs(): adds perl (required by intltool_host.)
etc/README: updated.
-rw-r--r--etc/README4
-rw-r--r--subr/build_init.subr6
2 files changed, 5 insertions, 5 deletions
diff --git a/etc/README b/etc/README
index 8c3c0d30..a7fabe99 100644
--- a/etc/README
+++ b/etc/README
@@ -13,8 +13,8 @@ A Midipix distribution consists of the following:
libraries such as ncurses, libressl, as well as Perl and Python.
## Build-time dependencies
-* **Alpine Linux**: binutils bzip2 cmake coreutils findutils g++ gawk gcc git grep gzip libc-dev linux-headers lzip make musl-dev net-tools patch procps sed tar util-linux wget xz zip
-* **Debian/-derived Linux**: binutils bzip2 clzip cmake coreutils curl findutils g++ gawk gcc git grep gzip hostname libc6-dev lzma make patch procps sed tar util-linux wget xz-utils zip
+* **Alpine Linux**: binutils bzip2 cmake coreutils findutils g++ gawk gcc git grep gzip libc-dev linux-headers lzip make musl-dev net-tools patch perl perl-xml-parser procps sed tar util-linux wget xz zip
+* **Debian/-derived Linux**: binutils bzip2 clzip cmake coreutils curl findutils g++ gawk gcc git grep gzip hostname libc6-dev libxml-parser-perl lzma make patch perl procps sed tar util-linux wget xz-utils zip
> N.B. Some packages (*coreutils*, *grep*, and *tar*, among others) override
Alpine's BusyBox utilities of the same name, as the latter are either non-
diff --git a/subr/build_init.subr b/subr/build_init.subr
index 97a18ff7..955ae164 100644
--- a/subr/build_init.subr
+++ b/subr/build_init.subr
@@ -164,9 +164,9 @@ buildp_init_prereqs() {
for _cmd in \
awk bunzip2 cat chmod cmake cp date find flock g++ \
gcc git grep gunzip gzip hostname install kill \
- ln lzip make mkdir mkfifo mv paste patch pgrep \
- pkill printf readlink rm sed seq sha256sum sort \
- stat tail tar test touch tr wget xz zip; do
+ ln lzip make mkdir mkfifo mv paste patch perl \
+ pgrep pkill printf readlink rm sed seq sha256sum \
+ sort stat tail tar test touch tr wget xz zip; do
if ! which "${_cmd}" >/dev/null; then
_cmds_missing="${_cmds_missing:+${_cmds_missing} }${_cmd}";
fi;