aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-11-18 21:38:19 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-11-18 21:38:19 -0500
commit6eb28331b7c4fbd407db5d492a1c22ad2a24d175 (patch)
tree7907a71e102244e5ee9b9badb495c602fe0cd370
parent4c488cb9ce4c49ed4b9247b41ded16c63adbf80a (diff)
downloadspm-6eb28331b7c4fbd407db5d492a1c22ad2a24d175.tar.gz
Remove util-linux
-rw-r--r--scripts/util-linux/build.sh29
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}"
-}
-
-