Compare commits
No commits in common. "f125d130f405c3cc7d5e5d0039e976de551b9817" and "cf44591b9f8168d5ab7cb6e947c89ae909e65e9e" have entirely different histories.
f125d130f4
...
cf44591b9f
2 changed files with 0 additions and 34 deletions
|
|
@ -1,32 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
rm -f ./repo/*
|
|
||||||
rm -rf ./packages
|
|
||||||
mkdir -p ./packages
|
|
||||||
|
|
||||||
BASE_DIR=$(realpath .)
|
|
||||||
REPO_DIR="$(realpath repo)"
|
|
||||||
PKG_DIR="$(realpath packages)"
|
|
||||||
|
|
||||||
cd $PKG_DIR
|
|
||||||
|
|
||||||
while read -u 10 p; do
|
|
||||||
GIT_URL=$p
|
|
||||||
GIT_FILE=$(basename $GIT_URL)
|
|
||||||
REPO_NAME=${GIT_FILE%.*}
|
|
||||||
|
|
||||||
git clone $GIT_URL
|
|
||||||
cd $REPO_NAME
|
|
||||||
makepkg -sr --sign
|
|
||||||
|
|
||||||
PKG_FILES=(*.pkg*)
|
|
||||||
mv *.tar.zst $REPO_DIR
|
|
||||||
mv *.tar.zst.sig $REPO_DIR
|
|
||||||
|
|
||||||
repo-add -n "$REPO_DIR/repo.db.tar.zst" "$REPO_DIR/${PKG_FILES[0]}"
|
|
||||||
|
|
||||||
cd ../
|
|
||||||
|
|
||||||
done 10<"$BASE_DIR/target-pkgs.list"
|
|
||||||
|
|
||||||
#TODO: Add deps resolving
|
|
||||||
|
|
@ -1,3 +1 @@
|
||||||
https://aur.archlinux.org/seafile.git
|
|
||||||
https://aur.archlinux.org/seafile-client.git
|
https://aur.archlinux.org/seafile-client.git
|
||||||
https://aur.archlinux.org/hytale-launcher-bin.git
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue