28 lines
683 B
Bash
28 lines
683 B
Bash
# Maintainer: Yi-Ting Shih <ytshih@konchin.com>
|
|
pkgname=hl-base-env
|
|
pkgver=0.0.1
|
|
pkgrel=1
|
|
pkgdesc="Base environment for konchin.com homelab"
|
|
arch=(any)
|
|
url="https://gitea.konchin.com/package/hl-base-env"
|
|
license=('0BSD')
|
|
depends=(
|
|
'vim'
|
|
'p11-kit'
|
|
'ca-certificates-utils'
|
|
)
|
|
install="$pkgname.install"
|
|
source=(
|
|
'90-editor.sh'
|
|
'hl-rootca.crt'
|
|
)
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
|
|
install -Dm644 90-editor.sh "$pkgdir/etc/profile.d/90-editor.sh"
|
|
install -Dm644 hl-rootca.crt "$pkgdir/usr/share/$pkgname/hl-rootca.crt"
|
|
}
|
|
sha256sums=('8df871b1727d147ecc410de3aa6cf24e5bf046f1bfb4b600b60c40acd6c4fa9a'
|
|
'1bcae0144eb86eae3948eae7299c99f0b1fc53d0f47884da6dfcaddab503a382')
|