mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/sickrage: Updated for version 2017.12.19_1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
df28663e63
commit
66ab6b6a11
3 changed files with 11 additions and 8 deletions
|
@ -23,10 +23,13 @@ done
|
|||
|
||||
# Check if the pid file exists
|
||||
check() {
|
||||
STATUS=stopped
|
||||
if [ -e $PIDFILE ]; then
|
||||
STATUS=running
|
||||
else
|
||||
STATUS=stopped
|
||||
if ps -p $(cat $PIDFILE); then
|
||||
STATUS=running
|
||||
else
|
||||
STATUS=stopped
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for sickrage
|
||||
# Copyright 2016 Jeremy Hansen <jebrhansen+SBo -at- gmail.com>
|
||||
# Copyright 2016-2018 Jeremy Hansen <jebrhansen+SBo -at- gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
|
||||
PRGNAM=sickrage
|
||||
SRCNAM=SickRage
|
||||
VERSION=${VERSION:-2017.06.05_1}
|
||||
VERSION=${VERSION:-2017.12.19_1}
|
||||
SRCVER=$(echo $VERSION | tr _ -)
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="sickrage"
|
||||
VERSION="2017.06.05_1"
|
||||
VERSION="2017.12.19_1"
|
||||
HOMEPAGE="https://sickrage.github.io/"
|
||||
DOWNLOAD="https://github.com/SickRage/SickRage/archive/v2017.06.05-1/SickRage-2017.06.05-1.tar.gz"
|
||||
MD5SUM="db78c993177020e2956b2d7b7066311e"
|
||||
DOWNLOAD="https://github.com/SickRage/SickRage/archive/v2017.12.19-1/SickRage-2017.12.19-1.tar.gz"
|
||||
MD5SUM="679cc8cce09107d272166787afc5111a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue