summaryrefslogtreecommitdiff
path: root/repo/util
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util')
-rw-r--r--repo/util/mkinitcpio.xibuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/util/mkinitcpio.xibuild b/repo/util/mkinitcpio.xibuild
new file mode 100644
index 0000000..c607eaa
--- /dev/null
+++ b/repo/util/mkinitcpio.xibuild
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+DEPS=(sh)
+
+PKG_VER=31
+SOURCE=https://github.com/archlinux/mkinitcpio/releases/download/v31/mkinitcpio-$PKG_VER.tar.gz
+DESC="Scripts to make initramfs provided by archlinux"
+
+build () {
+ make
+}
+
+package () {
+ make DESTDIR="$PKG_DEST" install
+}