summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2013-07-31 12:28:07 +0000
committerJonathan Maw <jonathan.maw@codethink.co.uk>2013-07-31 12:29:04 +0000
commit3f1b3743a4c1066c0c5f15da08174c512e4b3495 (patch)
treeb27c98f49068bf18f4b7dac54892e835a0341608
parent9e361f0efc08948718c49aee2488fa9210a3c9b7 (diff)
downloadutil-linux-3f1b3743a4c1066c0c5f15da08174c512e4b3495.tar.gz
Convert to YAML
-rw-r--r--util-linux.morph24
1 files changed, 10 insertions, 14 deletions
diff --git a/util-linux.morph b/util-linux.morph
index 2a17a79e2..1a41064c7 100644
--- a/util-linux.morph
+++ b/util-linux.morph
@@ -1,14 +1,10 @@
-{
- "name": "util-linux",
- "kind": "chunk",
- "build-system": "autotools",
- "configure-commands": [
- "./autogen.sh",
- "./configure --prefix=\"$PREFIX\" --disable-use-tty-group"
- ],
- "install-commands": [
- "make DESTDIR=\"$(pwd)/util-linux-tmpdir\" install",
- "for prog in blkid blockdev cal chrt dmesg fdisk findfs flock fsck hexdump hwclock ipcrm ipcs logger mkswap more mount mountpoint pivot_root readprofile renice script setsid swapoff swapon switch_root umount; do find \"$(pwd)/util-linux-tmpdir\" -name \"$prog\" -delete; done",
- "cp -a \"$(pwd)\"/util-linux-tmpdir/* \"$DESTDIR\""
- ]
-}
+name: util-linux
+kind: chunk
+build-system: autotools
+configure-commands:
+- ./autogen.sh
+- ./configure --prefix="$PREFIX" --disable-use-tty-group
+install-commands:
+- make DESTDIR="$(pwd)/util-linux-tmpdir" install
+- for prog in blkid blockdev cal chrt dmesg fdisk findfs flock fsck hexdump hwclock ipcrm ipcs logger mkswap more mount mountpoint pivot_root readprofile renice script setsid swapoff swapon switch_root umount; do find "$(pwd)/util-linux-tmpdir" -name "$prog" -delete; done
+- cp -a "$(pwd)"/util-linux-tmpdir/* "$DESTDIR"