INSTALL: You can't run the script before you clone the repo. Also updated the

name of the script.
Fixed typo in README_SMARTPL.md.
This commit is contained in:
Herb Jellinek 2015-12-29 14:10:58 -08:00
parent 1a8028600f
commit 1e8224c00e
2 changed files with 7 additions and 4 deletions

View File

@ -63,16 +63,19 @@ sudo yum install \
sqlite-devel libconfuse-devel libunistring-devel mxml-devel libevent-devel \ sqlite-devel libconfuse-devel libunistring-devel mxml-devel libevent-devel \
avahi-devel libgcrypt-devel zlib-devel alsa-lib-devel ffmpeg-devel avahi-devel libgcrypt-devel zlib-devel alsa-lib-devel ffmpeg-devel
Clone the forked-daapd repo:
git clone https://github.com/ejurgensen/forked-daapd.git
cd forked-daapd
Now you need to install ANTLR3, but you probably can't use the version that Now you need to install ANTLR3, but you probably can't use the version that
comes with the package manager (but do try that first). Instead you can install comes with the package manager (but do try that first). Instead you can install
it by running this script: it by running this script:
scripts/antlr34_install.sh scripts/antlr35_install.sh
Then run the following: Then run the following:
git clone https://github.com/ejurgensen/forked-daapd.git
cd forked-daapd
autoreconf -i autoreconf -i
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make make

View File

@ -125,7 +125,7 @@ One example of a valid date is a date in yyyy-mm-dd format:
There are also some special date keywords: There are also some special date keywords:
* "today", "yesterday", "last week", "last month", "last year" * "today", "yesterday", "last week", "last month", "last year"
A valid date can also be made by appling an interval to a date. Intervals can be defined as "days", "weeks", "months", "years". A valid date can also be made by applying an interval to a date. Intervals can be defined as "days", "weeks", "months", "years".
As an example, a valid date might be: As an example, a valid date might be:
```3 weeks before today``` or ```3 weeks ago``` ```3 weeks before today``` or ```3 weeks ago```