23 lines
735 B
Bash
23 lines
735 B
Bash
# Maintainer: Giovanni Harting <539@idlegandalf.com>
|
|
|
|
pkgname=alhp-mirrorlist
|
|
pkgver=20250825
|
|
pkgrel=1
|
|
pkgdesc='ALHP mirror list for use by pacman'
|
|
arch=(any)
|
|
url='https://somegit.dev/ALHP/alhp-mirrorlist'
|
|
license=(GPL-2.0-or-later)
|
|
backup=(
|
|
'etc/pacman.d/alhp-mirrorlist'
|
|
'etc/pacman.d/alhp-mirrorlist.ipfs'
|
|
)
|
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
|
|
b2sums=('66ac627b6ec6bda452185dcfe0cc3a094709e507f13237a6fdbf8c4fc03667ec7e2b8618d7f7d210f788d08de06eac7e029f28fa66f65ee219e311cc8c626286')
|
|
|
|
package() {
|
|
install -Dm644 alhp-mirrorlist/mirrorlist "$pkgdir"/etc/pacman.d/alhp-mirrorlist
|
|
install -Dm644 alhp-mirrorlist/mirrorlist.ipfs "$pkgdir"/etc/pacman.d/alhp-mirrorlist.ipfs
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|