diff --git a/PKGBUILD b/PKGBUILD index 1e1235d..2512583 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ arch=('any') url="https://git.actcur.com/actcur/aur_repo" license=('GPL') groups=() -depends=('sudo' 'python' 'python-requests' 'python-sh' 'darkhttpd') +depends=('sudo' 'python' 'python-requests' 'python-sh') makedepends=('git') optdepends=() checkdepends=() diff --git a/README.md b/README.md index a6cd305..a2b4951 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ I recommend running this in a container or VM to prevent installing unwanted pac git clone https://git.actcur.com/actcur/aur_repo cd aur_repo makepkg -si -systemctl enable aur_repo --now ``` use visudo to uncomment the nopasswd line for wheel. @@ -16,6 +15,8 @@ add packages you want to build in /etc/aur_repo/pkglist, one per line then as the build user run aur_repo. Build logs are stored in /var/log/aur_repo. I'd also set a password for the build user. +next set up a web server (lighttp, nginx, apache, etc) to serve the /repo folder + on any machine that you want to sync to your aur repo add the following to /etc/pacman.conf: ``` [aur-local] diff --git a/aur_repo.service b/aur_repo.service deleted file mode 100644 index 5a711d9..0000000 --- a/aur_repo.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=aur_repo server (darkhttpd) - -[Service] -Type=simple -ExecStart=/usr/bin/darkhttpd /repo --uid build --gid nobody --chroot - -[Install] -WantedBy=multi-user.target