Nils Freydank
442fa89672
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Nils Freydank <holgersson@posteo.de>
30 lines
675 B
Bash
30 lines
675 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
COMMIT_ID="eec6e21194eae9877e73c92ffdf211ebc4b260f3"
|
|
|
|
DESCRIPTION="Repository list for Archlinux's binary package manager"
|
|
HOMEPAGE="https://archlinux.org/mirrorlist/"
|
|
SRC_URI="https://raw.githubusercontent.com/archlinux/svntogit-packages/${COMMIT_ID}/trunk/mirrorlist -> ${P}"
|
|
KEYWORDS="~amd64"
|
|
LICENSE="GPL-2"
|
|
SLOT=0
|
|
S="${WORKDIR}"
|
|
|
|
src_unpack() {
|
|
cp "${DISTDIR}/${P}" mirrorlist
|
|
}
|
|
|
|
src_install() {
|
|
insinto etc/pacman.d
|
|
doins mirrorlist
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo
|
|
einfo "This packages installs only a plain list of mirrors for sys-apps/pacman."
|
|
einfo
|
|
}
|