93 lines
3.2 KiB
Bash
93 lines
3.2 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 |---------------------------------------
|
|
|
|
pkgname=gssproxy
|
|
pkgver=0.9.2
|
|
pkgrel=01
|
|
pkgdesc="GSSAPI Proxy w/o systemd - deprecated after 0.9.0"
|
|
# This was a dependency of nfs-utils and its dependents
|
|
# We opted in building nfs-utils without gssproxy (like Void does)
|
|
# So remove this RedHat garbage if nothing else depends on it
|
|
# If another pkg still depends on gssproxy let us know and
|
|
# we will attempt to build that one
|
|
arch=(x86_64)
|
|
url="https://github.com/gssapi/gssproxy"
|
|
#depends=('krb5' 'popt' 'ding-libs')
|
|
depends=('libverto-module-base' 'popt' 'ding-libs' 'krb5')
|
|
makedepends=('libxslt' 'docbook-xsl' 'doxygen' 'po4a')
|
|
options=('emptydirs' 'makeflags')
|
|
backup=(etc/gssproxy/{gssproxy,24-nfs-server,80-httpd,99-network-fs-clients}.conf
|
|
etc/gss/mech.d/proxymech.conf)
|
|
source=(https://github.com/gssapi/gssproxy/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
|
|
|
|
prepare() {
|
|
cd "$srcdir/gssproxy-$pkgver"
|
|
# delete unneeded service dependency
|
|
|
|
sed -i "/# GSSPROXY will not be started until syslog is/d" systemd/gssproxy.service.in
|
|
# sed -i "s/syslog.target //" systemd/gssproxy.service.in
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd gssproxy-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-pubconf-path=/etc/gssproxy \
|
|
--sbindir=/usr/bin \
|
|
--localstatedir=/var \
|
|
--without-selinux \
|
|
--with-initscript=none \
|
|
--with-gpp-default-behavior=REMOTE_FIRST
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname"-$pkgver
|
|
make test_proxymech
|
|
}
|
|
|
|
|
|
package() {
|
|
cd gssproxy-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# cleanup empty directories
|
|
rm -rf "$pkgdir"/usr/include
|
|
rm -rf "$pkgdir"/usr/share/doc
|
|
|
|
# install default config files
|
|
install -m644 examples/gssproxy.conf "$pkgdir"/etc/gssproxy/gssproxy.conf
|
|
# nfs services
|
|
install -m644 examples/24-nfs-server.conf "$pkgdir"/etc/gssproxy/24-nfs-server.conf
|
|
install -m644 examples/99-network-fs-clients.conf "$pkgdir"/etc/gssproxy/99-network-fs-clients.conf
|
|
# httpd service / use Arch UID/GID http/33 (by pkg filesystem)
|
|
install -m644 examples/80-httpd.conf "$pkgdir"/etc/gssproxy/80-httpd.conf
|
|
sed -i -e "s:euid = apache:euid = http:" "$pkgdir"/etc/gssproxy/80-httpd.conf
|
|
|
|
# install -Dm644 examples/mech "$pkgdir"/etc/gss/mech.d/gssproxy.conf
|
|
|
|
# FS#51574
|
|
install -m700 -d ${pkgdir}/var/lib/gssproxy/rcache
|
|
|
|
install -m755 -d ${pkgdir}/usr/share/licenses/$pkgname
|
|
install -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/
|
|
}
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('custom: MIT')
|
|
|
|
# https://github.com/gssapi/gssproxy/releases/download/v0.9.2/gssproxy-0.9.2.tar.gz.sha512sum.txt
|
|
sha512sums=('6de484c9c1715e8b845106e1b16e1c29805e4104db296eb44ea15e6b6973fd1df0b043d2cdc2798f04c7a0ce66279e356a285684bc3573ef847532ab2b87aca3')
|
|
|
|
sha256sums=(1fe43ea1b03d19e0f1eda3c82ba5bd8bba04e9bc7e629c117dad094d0a6fc1de) # gssproxy-0.9.2.tar.gz
|
|
|
|
## 22dc97986f310c73868c0ede1677a222708e6ffed1a145781345a2d4f55dc429 gssproxy-0.9.2-01-x86_64.pkg.tar.lz
|
|
|