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