From 99cd84265229a8963899270f32abcec43660984f Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Tue, 09 Jul 2019 04:58:11 +0000
Subject: [PATCH] Using hardlinks for files instead of copying

---
 build.sh |   26 +++++++++++++++++++++++---
 1 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/build.sh b/build.sh
index ea29539..bffa28c 100644
--- a/build.sh
+++ b/build.sh
@@ -34,13 +34,33 @@
     return 0
 }
 
-for d in 'emacs-git'
+#update system
+sudo pacman -Syu --noconfirm
+
+#go to build directory
+cd $(dirname "$(realpath $0)")
+
+#Remove old packages
+#git rm -r x86_64/*.pkg.tar.xz
+
+for d in `find . -maxdepth 1 -not -path '*/\.*' -type d`
 do
+	#Only do package directories
+	if [ "$d" = "./x86_64" ] || [ "$d" = "." ]; then
+		continue
+	fi
 	cd $d
+	#update package to latest from AUR
 	git pull
-	makepkg
+	makepkg -s --noconfirm
 	latest=$(newest_matching_file '*.pkg.tar.xz')
 	cd ..
-	repo-add ./repo.db.tar.xz $d/$latest
+	ln $d/$latest x86_64/$latest
+	repo-add ./Chizi123.db.tar.xz x86_64/$latest
 done
 
+ln Chizi123.db.tar.xz x86_64/Chizi123.db
+ln Chizi123.files.tar.xz x86_64/Chizi123.files
+git add x86_64
+git commit -m "'$(date +%d/%m/%y-%H:%M)'"
+git push

--
Gitblit v1.9.3