mirror of
https://github.com/arcan1s/queued.git
synced 2025-04-26 16:37:17 +00:00
27 lines
860 B
Bash
27 lines
860 B
Bash
# Author: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
|
|
pkgname=queued
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Daemon for starting jobs to queue of calculations"
|
|
arch=('any')
|
|
url="https://github.com/arcan1s/queued"
|
|
license=("GPL")
|
|
makedeps=('git')
|
|
source=(https://github.com/arcan1s/queued/releases/download/V.${pkgver}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('d93c8cf20804b07b47645b0c43d45d3d')
|
|
backup=('etc/queued.conf')
|
|
|
|
package()
|
|
{
|
|
# daemon
|
|
install -D -m755 "${srcdir}/${pkgname}/usr/bin/queued" "${pkgdir}/usr/bin/queued"
|
|
|
|
# service
|
|
install -D -m644 "${srcdir}/${pkgname}/usr/lib/systemd/system/queued.service" \
|
|
"${pkgdir}/usr/lib/systemd/system/queued.service"
|
|
install -D -m644 "${srcdir}/${pkgname}/etc/queued.conf" \
|
|
"${pkgdir}/etc/queued.conf"
|
|
}
|