Initial commit

This commit is contained in:
Christian Schendel 2025-09-01 05:11:35 +02:00
commit 7c36b20f83
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
8 changed files with 159 additions and 0 deletions

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
pkgname=dalci-mirrorlist
pkgver=20240928
pkgrel=1
pkgdesc="dalci_repo mirrorlist to use with Pacman"
arch=('any')
url="https://dalci.gitlab.io"
license=(
'GPL-3.0-or-later'
)
backup=(etc/pacman.d/dalci-mirrorlist)
source=(dalci-mirrorlist)
sha256sums=('c15909048d6bfb9d3623c9940306a6d990a1bec4de26d1090fe5daf9c56a2bc9')
package() {
mkdir -p "$pkgdir/etc/pacman.d"
install -Dm0644 -t "$pkgdir/etc/pacman.d" dalci-mirrorlist
}
# vim: set ft=sh ts=4 sw=4 et: