diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-18 21:38:19 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-18 21:38:19 -0500 |
commit | 6eb28331b7c4fbd407db5d492a1c22ad2a24d175 (patch) | |
tree | 7907a71e102244e5ee9b9badb495c602fe0cd370 | |
parent | 4c488cb9ce4c49ed4b9247b41ded16c63adbf80a (diff) | |
download | spm-6eb28331b7c4fbd407db5d492a1c22ad2a24d175.tar.gz |
Remove util-linux
-rw-r--r-- | scripts/util-linux/build.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/scripts/util-linux/build.sh b/scripts/util-linux/build.sh deleted file mode 100644 index 8a9b65c..0000000 --- a/scripts/util-linux/build.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -name=util-linux -version=2.34 -revision=0 -sources=( - "https://mirrors.edge.kernel.org/pub/linux/utils/${name}/v${version}/${name}-${version}.tar.gz" -) -depends=( - "autoconf" - "automake" - "libtool" -) - - -function prepare() { - tar xf ${name}-${version}.tar.gz - cd ${name}-${version} -} - -function build() { - ./configure --prefix=$prefix - make -j${maxjobs} -} - -function package() { - make install DESTDIR="${destdir}" -} - - |