35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Template file for 'elog'
|
|
pkgname=elog
|
|
version=3.1.4.3
|
|
revision=1
|
|
_distver="${version:0:-2}-${version:(-1)}"
|
|
wrksrc="$pkgname-${_distver}"
|
|
build_style=gnu-makefile
|
|
CFLAGS="-Imxml"
|
|
make_dirs="/var/lib/elog/logbooks 0750 elog elog"
|
|
conf_files="/etc/elog/elogd.cfg"
|
|
system_accounts="elog"
|
|
short_desc="Logbook system to manage notes through a Web interface"
|
|
maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
|
|
makedepends="openssl-devel"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://elog.psi.ch/elog/"
|
|
distfiles="https://elog.psi.ch/elog/download/tar/$pkgname-$_distver.tar.gz"
|
|
checksum=e684917c6bbdfbafcbd9012dd5914bd5f3ee14f31f89e12ddb21bc4b41baba03
|
|
|
|
do_install() {
|
|
vbin elog
|
|
vbin elogd
|
|
vbin elconv
|
|
vman man/elog.1
|
|
vmkdir usr/share/elog
|
|
vcopy resources usr/share/elog
|
|
vcopy scripts usr/share/elog
|
|
vcopy themes usr/share/elog
|
|
sed -i '/\[global\]/s/$/\nLogbook dir = \/var\/lib\/elog\/logbooks/' elogd.cfg.example
|
|
sed -i '/\[global\]/s/$/\nResource dir = \/usr\/share\/elog/' elogd.cfg.example
|
|
vmkdir etc/elog
|
|
vinstall elogd.cfg.example 0755 etc/elog elogd.cfg
|
|
vsv elogd
|
|
}
|