OSDN Git Service

rework instantinstall to allow multiple arguments
[instantos/instantOS.git] / repo.sh
diff --git a/repo.sh b/repo.sh
old mode 100644 (file)
new mode 100755 (executable)
index 63a2b22..dd20561
--- a/repo.sh
+++ b/repo.sh
@@ -1,9 +1,39 @@
 #!/bin/bash
 
+###############################################################################
+## add repo containing instantOS programs and required prebuilt aur programs ##
+###############################################################################
+
 echo "adding instantOS repo"
 
-if ! grep -q 'instantos\.surge\.sh' /etc/pacman.conf; then
-    echo "[instant]" >>/etc/pacman.conf
-    echo "SigLevel = Optional TrustAll" >>/etc/pacman.conf
-    echo "Server = http://instantos.surge.sh" >>/etc/pacman.conf
-fi
\ No newline at end of file
+addrepo() {
+    if ! grep -q '\[instant\]' /etc/pacman.conf; then
+        echo "adding $1 repo"
+        echo "[instant]" >>/etc/pacman.conf
+        echo "SigLevel = Optional TrustAll" >>/etc/pacman.conf
+        echo "Include = /etc/pacman.d/instantmirrorlist" >>/etc/pacman.conf
+        if [ -e /usr/share/instantutils/mirrors/"$1" ]; then
+            cat /usr/share/instantutils/mirrors/"$1" >/etc/pacman.d/instantmirrorlist
+        else
+            curl -s https://raw.githubusercontent.com/instantOS/instantOS/master/mirrors/"$1" >/etc/pacman.d/instantmirrorlist
+        fi
+    else
+        echo "instantOS $1 repository already added"
+    fi
+
+}
+
+if uname -m | grep -q '^x'; then
+    # default is 64 bit repo
+    addrepo amd64
+elif uname -m | grep 'arm'; then
+    echo "no official arm repo yet"
+    exit
+    addrepo instantosarm
+elif uname -m | grep '^i'; then
+    echo "no official 32 bit repo yet"
+    exit
+    addrepo instantos32
+else
+    echo "no suitable repo for architecture found"
+fi