mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
34 lines
990 B
Bash
34 lines
990 B
Bash
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
|
_pkgname=locale
|
|
_reponame=arch
|
|
pkgname="de-p1st-$_pkgname"
|
|
pkgver=0.0.8
|
|
pkgrel=1
|
|
pkgdesc="locale and timezone"
|
|
arch=('any')
|
|
url="https://codeberg.org/privacy1st/${_reponame}"
|
|
license=('MIT')
|
|
depends=('holo')
|
|
makedepends=('git')
|
|
backup=('etc/locale.conf')
|
|
install='.install'
|
|
source=("git+${url}.git")
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
cd "${_reponame}/pkg/${pkgname}"
|
|
|
|
# Note: The following three files are overwritten with "holo apply --force ..."
|
|
# See ".install" script
|
|
|
|
# (!)
|
|
# install -Dm0644 locale.conf "$pkgdir"/usr/share/holo/files/"$pkgname"/etc/locale.conf
|
|
install -Dm0644 locale.conf "$pkgdir"/etc/locale.conf
|
|
|
|
install -Dm0644 locale.gen "$pkgdir"/usr/share/holo/files/"$pkgname"/etc/locale.gen
|
|
|
|
# (!)
|
|
# ln -sf /usr/share/zoneinfo/Europe/Berlin "$pkgdir"/usr/share/holo/files/"$pkgname"/etc/localtime
|
|
ln -sf /usr/share/zoneinfo/Europe/Berlin "$pkgdir"/etc/localtime
|
|
}
|