51 lines
1.8 KiB
Bash
51 lines
1.8 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://git.disroot.org/joborun-pkg/jobcore/src/branch/main/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
# Contributor : Evhorizon <event.horizon@disroot.org>
|
|
|
|
pkgname=pambase
|
|
pkgver=20230918
|
|
pkgrel=02
|
|
pkgdesc="Base PAM configuration for services"
|
|
url="https://www.archlinux.org"
|
|
source=('system-auth'
|
|
'system-local-login'
|
|
'system-login'
|
|
'system-remote-login'
|
|
'system-services'
|
|
'other')
|
|
|
|
backup=('etc/pam.d/system-auth'
|
|
'etc/pam.d/system-local-login'
|
|
'etc/pam.d/system-login'
|
|
'etc/pam.d/system-remote-login'
|
|
'etc/pam.d/system-services'
|
|
'etc/pam.d/other')
|
|
|
|
package() {
|
|
install -dm755 "$pkgdir/etc/pam.d"
|
|
install -m644 -t "$pkgdir/etc/pam.d" "${source[@]}"
|
|
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
sha256sums=(a)
|
|
|
|
license=(GPL-3.0-or-later)
|
|
|
|
sha256sums=(f9a79ebc3c45090d26c18878d98f441b6b3e723b42bf40c2f886fcb82213984b # system-auth
|
|
# d3f6c7465198415df7bc3b365595642c7255dd69f2d7db548eb071123f43164c # system-auth-arch
|
|
005736b9bd650ff5e5d82a7e288853776d5bb8c90185d5774c07231c1e1c64a9 # system-local-login
|
|
00a96973a16f8fb9aabb98bc1fad3d50470608fc87a03a20e1b5fc4c89b0b4c7 # system-login
|
|
# 86365d603d4a50f30252888b6db8f0bb4b398900903ac61fca66385561e509e5 # system-login-arch
|
|
005736b9bd650ff5e5d82a7e288853776d5bb8c90185d5774c07231c1e1c64a9 # system-remote-login
|
|
6eb1acdd3fa9f71a7f93fbd529be57ea65bcafc6e3a98a06af4d88013fc6a567 # system-services
|
|
d5ed59ec2157c19c87964a162f7ca84d53c19fb2bd68d3fbc1671ba8d906346f) # other
|
|
|
|
## d77b200117e25020cd6e977032f0cb28be6a8b7ce587c155ec32a09778a3ef26 pambase-20230918-02-x86_64.pkg.tar.lz
|