arch/pkg/de-p1st-locale/PKGBUILD

34 lines
1.4 KiB
Bash
Raw Normal View History

2021-05-02 17:19:20 +02:00
# Maintainer: Daniel Langbein <daniel@systemli.org>
_pkgname=locale
_reponame=arch
pkgname="de-p1st-$_pkgname"
pkgver=0.1.2
pkgrel=1
2021-05-02 17:19:20 +02:00
pkgdesc="locale and timezone"
arch=('any')
url="https://codeberg.org/privacy1st/${_reponame}"
license=('MIT')
2022-04-15 15:43:21 +02:00
depends=('holo' 'git' 'base') # holo depends on base (otherwise "holo apply" may fail on initial system installation) and git (git-diff)
2021-05-02 17:19:20 +02:00
makedepends=('git')
2021-05-13 19:13:19 +02:00
backup=('etc/locale.conf' 'etc/localtime')
2021-05-02 17:19:20 +02:00
install='.install'
source=("git+${url}.git")
sha256sums=('SKIP')
package() {
cd "${_reponame}/pkg/${pkgname}"
2021-05-13 19:13:19 +02:00
# Copy locale.conf to /etc/locale.conf so that one package owns that file
2021-05-13 19:21:07 +02:00
# in this PKGBUILD, add /etc/locale.conf to backup array so that pacman does not fail
# if this file already exists on local filesystem (a ".pacnew" file will be created in that case)
2021-05-13 19:13:19 +02:00
# and then use holo with "--force" to overwrite the local version with the desired one
2021-05-13 19:23:32 +02:00
# (see .install script)
2021-05-03 18:14:37 +02:00
install -Dm0644 locale.conf "$pkgdir"/etc/locale.conf
install -Dm0644 locale.conf "$pkgdir"/usr/share/holo/files/20-"$pkgname"/etc/locale.conf
2021-05-13 19:13:19 +02:00
#
ln -sf /usr/share/zoneinfo/Europe/Berlin "$pkgdir"/etc/localtime
ln -sf /usr/share/zoneinfo/Europe/Berlin "$pkgdir"/usr/share/holo/files/20-"$pkgname"/etc/localtime
2021-05-03 18:14:37 +02:00
install -Dm0644 locale.gen "$pkgdir"/usr/share/holo/files/20-"$pkgname"/etc/locale.gen
2021-05-02 17:19:20 +02:00
}