forked from ayyi/samplecat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
36 lines (22 loc) · 938 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Samplecat installation
----------------------
Please report any problems at https://github.com/ayyi/samplecat
1 - configure, make, make install.
The configure script will report missing dependencies.
2 - if you are using Mysql, you need to setup the database.
(Sqlite setup is done automatically)
The datbase schema is contained in the file samples.sql
You can import this by runnig the command:
mysql -u<USERNAME> -p < samples.sql
3 - running the program will create a default config file
(~/.config/samplecat/samplecat) that you should edit with
your database access information.
If installing directly from the repository rather than from
a tarball, some additional steps are needed before you can
build:
./autogen.sh
git submodule init
git submodule update
If you subsequently need to update the submodules as part of a git pull:
git submodule foreach git pull origin master
make clean