mirror of
https://github.com/arcan1s/queued.git
synced 2025-07-30 05:29:55 +00:00
Release 1.0.0
This commit is contained in:
26
PKGBUILD
Normal file
26
PKGBUILD
Normal file
@ -0,0 +1,26 @@
|
||||
# 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"
|
||||
}
|
Reference in New Issue
Block a user