From 848ded958aad1aefaa7190283362cb01114385b9 Mon Sep 17 00:00:00 2001 From: Kyle Nusbaum Date: Tue, 17 Sep 2019 14:07:33 -0500 Subject: [PATCH] lsyncd: Fix run file, adopt the package --- srcpkgs/lsyncd/files/lsyncd/run | 2 +- srcpkgs/lsyncd/template | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/lsyncd/files/lsyncd/run b/srcpkgs/lsyncd/files/lsyncd/run index 1fdafa74033..6d8e1a3360e 100644 --- a/srcpkgs/lsyncd/files/lsyncd/run +++ b/srcpkgs/lsyncd/files/lsyncd/run @@ -1,4 +1,4 @@ #!/bin/sh [ -r ./conf ] && . ./conf exec 1>&2 -exec lsyncd "${CONF_FILE:-'/etc/lsyncd/lsyncd.conf.lua'}" +exec lsyncd -nodaemon "${CONF_FILE:-/etc/lsyncd/lsyncd.conf.lua}" diff --git a/srcpkgs/lsyncd/template b/srcpkgs/lsyncd/template index 35fed9a6e23..a6923503734 100644 --- a/srcpkgs/lsyncd/template +++ b/srcpkgs/lsyncd/template @@ -1,14 +1,14 @@ # Template file for 'lsyncd' pkgname=lsyncd version=2.2.3 -revision=1 +revision=2 wrksrc="${pkgname}-release-${version}" build_style=cmake hostmakedepends="asciidoc lua" makedepends="lua-devel" depends="rsync" short_desc="Syncing Daemon that synchronizes local directories with remote targets" -maintainer="Orphaned " +maintainer="Kyle Nusbaum " license="GPL-2.0-or-later" homepage="https://github.com/axkibe/lsyncd" distfiles="https://github.com/axkibe/lsyncd/archive/release-${version}.tar.gz"