2021-09-23 18:30:42 +02:00
|
|
|
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
2021-09-23 18:34:49 +02:00
|
|
|
_pkgname=pacman-repo-chromium
|
2021-09-23 18:30:42 +02:00
|
|
|
_reponame=arch
|
|
|
|
pkgname="de-p1st-$_pkgname"
|
|
|
|
pkgver=0.0.1
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Enable ungoogled-chromium repo"
|
|
|
|
arch=('any')
|
|
|
|
url="https://codeberg.org/privacy1st/${_reponame}"
|
|
|
|
license=('MIT')
|
2022-04-15 15:36:53 +02:00
|
|
|
depends=()
|
|
|
|
depends+=('pacman')
|
|
|
|
depends+=('holo' 'git' 'base') # without base "holo apply" may fail on initial system installation
|
2021-09-23 18:30:42 +02:00
|
|
|
depends+=('curl') # add signing key of mirror in .install
|
|
|
|
makedepends=('git')
|
|
|
|
install='.install'
|
|
|
|
source=("git+${url}.git")
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${_reponame}/pkg/${pkgname}"
|
|
|
|
|
|
|
|
install -Dm0644 pacman.d/ungoogled-chromium "$pkgdir"/etc/pacman.d/ungoogled-chromium
|
|
|
|
# 25 to be applied after de-p1st-pacman which is 20
|
|
|
|
install -Dm0544 pacman.conf.holoscript "$pkgdir"/usr/share/holo/files/25-"$pkgname"/etc/pacman.conf.holoscript
|
|
|
|
}
|