diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-08 22:48:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-08 22:48:42 +0300 |
commit | eef6621f34af49c5838f7377a3e2480279e80125 (patch) | |
tree | 04b119973c14e08cf7ec07d72e0b1df70dc1504c | |
parent | 0fea007ba384b46e1131cc3a84f1355b96657ad7 (diff) | |
download | plus-eef6621f34af49c5838f7377a3e2480279e80125.tar.gz plus-eef6621f34af49c5838f7377a3e2480279e80125.tar.bz2 plus-eef6621f34af49c5838f7377a3e2480279e80125.tar.xz plus-eef6621f34af49c5838f7377a3e2480279e80125.zip |
Add install action into build script.
-rwxr-xr-x | build.sh | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,8 +1,16 @@ #!/bin/bash +dir=`pwd` + autoreconf -i -./configure +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man + cd po make update-gmo cd .. make +mkdir run +make install
\ No newline at end of file |