diff options
author | davidovski <david@davidovski.xyz> | 2022-02-06 02:19:26 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-06 02:19:26 +0000 |
commit | 37db7d8cd18998ec35309c6c6c308bddafe96989 (patch) | |
tree | 1fb346b50e7ea9f4bee895bfd2a42ca827e84d8d | |
parent | 1493c73ca8c760837f9458b67957f70704c1f7fe (diff) |
added genfstab
-rw-r--r-- | repo/util/genfstab.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/util/genfstab.xibuild b/repo/util/genfstab.xibuild new file mode 100644 index 0000000..1d1c326 --- /dev/null +++ b/repo/util/genfstab.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +MAKEDEPS=(make asciidoc) +DEPS=(bash coreutils gawk) + +PKG_VER=24 +SOURCE=https://github.com/archlinux/arch-install-scripts.git +BRANCH=v$PKG_VER + +DESC="A tool for generating /etc/fstab files from archlinux" + +package () { + make PREFIX=/usr BINPROGS=genfstab MANS=doc/genfstab.8 install +} |