2021-05-02 17:19:20 +02:00
|
|
|
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
|
|
|
_pkgname=locale
|
|
|
|
_reponame=arch
|
|
|
|
pkgname="de-p1st-$_pkgname"
|
2021-05-13 17:44:02 +02:00
|
|
|
pkgver=0.0.8
|
|
|
|
pkgrel=1
|
2021-05-02 17:19:20 +02:00
|
|
|
pkgdesc="locale and timezone"
|
|
|
|
arch=('any')
|
|
|
|
url="https://codeberg.org/privacy1st/${_reponame}"
|
|
|
|
license=('MIT')
|
|
|
|
depends=('holo')
|
|
|
|
makedepends=('git')
|
2021-05-13 17:44:02 +02:00
|
|
|
backup=('etc/locale.conf')
|
2021-05-02 17:19:20 +02:00
|
|
|
install='.install'
|
|
|
|
source=("git+${url}.git")
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${_reponame}/pkg/${pkgname}"
|
|
|
|
|
2021-05-02 20:09:13 +02:00
|
|
|
# Note: The following three files are overwritten with "holo apply --force ..."
|
|
|
|
# See ".install" script
|
|
|
|
|
2021-05-03 18:14:37 +02:00
|
|
|
# (!)
|
|
|
|
# install -Dm0644 locale.conf "$pkgdir"/usr/share/holo/files/"$pkgname"/etc/locale.conf
|
|
|
|
install -Dm0644 locale.conf "$pkgdir"/etc/locale.conf
|
|
|
|
|
2021-05-02 20:17:17 +02:00
|
|
|
install -Dm0644 locale.gen "$pkgdir"/usr/share/holo/files/"$pkgname"/etc/locale.gen
|
2021-05-02 17:19:20 +02:00
|
|
|
|
2021-05-03 18:14:37 +02:00
|
|
|
# (!)
|
|
|
|
# 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
|
2021-05-02 17:19:20 +02:00
|
|
|
}
|