debian-packages/packages/bin/remark42-bin/DEBBUILD
leafee98 c48987be89
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Modify DEBBUILD of remark42
2023-08-18 20:14:34 +08:00

35 lines
930 B
Plaintext

#/usr/bin/env bash
pkgname="remark42"
pkgver=1.12.0
pkgrel=2
arch="amd64"
pkgcommit=""
section="utils"
priority="optional"
pkgdesc="A comment engine"
url="https://github.com/umputun/remark42"
maintainer="Leafee98 <me@leafee98.com>"
_archive_name="remark42.linux-amd64"
source=(
"${_archive_name}.tar.gz::https://github.com/umputun/remark42/releases/download/v${pkgver}/${_archive_name}.tar.gz"
"remark42.service::materials/remark42.service"
)
function package {
install -Dm755 "${srcdir}/${_archive_name}" "${pkgdir}/usr/bin/remark42"
install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/remark42/LICENSE"
install -Dm644 "${srcdir}/README.md" "${pkgdir}/usr/share/doc/remark42/README.md"
install -Dm644 "${srcdir}/remark42.service" "${pkgdir}/usr/lib/systemd/system/remark42.service"
}
function debian_postinst {
cat << EOF
touch /etc/default/remark42
useradd --system remark42
EOF
}