23 lines
735 B
Bash
23 lines
735 B
Bash
# Maintainer: Giovanni Harting <539@idlegandalf.com>
|
|
|
|
pkgname=alhp-mirrorlist
|
|
pkgver=20241215
|
|
pkgrel=2
|
|
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=('da03d008817d7e6e7b5b25ac2d7db9319a34a1969279ae2c289652b019af590d66c586934b91f61234dc64f56d211562f3454af45f51c7e8793e0c9edcab20cd')
|
|
|
|
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:
|