1
0

Version updated to 22.35.0. Added install script with a reminder.

This commit is contained in:
Alexander Andreev 2022-08-29 07:17:04 +04:00
parent e9c6a12f23
commit e0794d395d
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
2 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Maintainer: Alexander "Arav" Andreev <me@arav.top>
pkgname=dwelling-radio
pkgver=22.31.0
pkgver=22.35.0
pkgrel=1
pkgdesc="Arav's dwelling / Radio"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
@ -12,9 +12,9 @@ makedepends=('git' 'go')
provides=('dwelling-radio')
conflicts=('dwelling-radio')
replaces=()
backup=('etc/dwelling/radio.yaml')
backup=('etc/dwelling/radio.yaml' 'etc/dwelling/radio.vars.liq')
options=()
install=
install=dwelling-radio.install
source=('dwelling-radio::git+https://git.arav.top/Arav/dwelling-radio.git')
noextract=()
md5sums=('SKIP')

View File

@ -0,0 +1,12 @@
post_install() {
cat << EOF
>>> You must add a path to a liquidsoap executable in a systemd unit!
>>
>>> Run `systemd edit dwelling-radio.service` to edit a .service file and
>>> add a new `ExecPaths=` option with a path to a liquidsoap to a
>>> [Service] section.
>>> Like:
>>> [Service]
>>> ExecPaths=/usr/bin/liquidsoap
EOF
}