mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
18 lines
498 B
Bash
18 lines
498 B
Bash
# Maintainer: Guoyi
|
|
|
|
pkgname=bioarchlinux-pacmanconf
|
|
pkgver=2023.03.22
|
|
pkgrel=1
|
|
pkgdesc="BioArchLinux pacman conf for use by pacman"
|
|
arch=('any')
|
|
url="https://github.com/BioArchLinux/iso"
|
|
license=('GPL')
|
|
backup=(etc/pacman.conf)
|
|
source=(https://raw.githubusercontent.com/BioArchLinux/iso/master/bio/pacman.conf)
|
|
sha256sums=('2ffe6868027f645c41d31742c6cfc5191efe10cf9e8f0d11ab77a96050890553')
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir/etc/"
|
|
install -m644 "$srcdir/pacman.conf" "$pkgdir/etc/pacman.conf"
|
|
}
|
|
|