mirror of https://github.com/Chizi123/Arch-autobuild-repo.git

Chizi123
2019-08-23 46a733bf8137cf574ab3ce84cff220cef3e1c7ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
 
CHDIR=$(dirname "$(realpath $0)")/chroot 
mount --bind $CHDIR $CHDIR
$CHDIR/bin/arch-chroot $CHDIR su joel -c "cd /build/repo;
                                                  git clone http://aur.archlinux.org/$1.git
                                          cd $1;
                                          makepkg -s --noconfirm;
                                          ln $1-*.pkg.tar.xz ../x86_64/;
                                          cd ../x86_64;
                                          rm Chizi123.db Chizi123.files;
                                          repo-add ../Chizi123.db.tar.xz $1-*.pkg.tar.xz;
                                          ln ../Chizi123.db.tar.xz Chizi123.db;
                                          ln ../Chizi123.files.tar.xz Chizi123.files;
                                          cd ../;
                                          git add x86_64/;
                                          git commit -m \"added $1\";
                                          git push"
umount $CHDIR