Fix ./configure again and add instructions

master
knotteye 3 years ago
parent d9765cb681
commit d068cf8c2c
  1. 5
      README.md
  2. 4
      configure

@ -3,3 +3,8 @@
Tabletop Library is a tool for viewing and editing collections of pdf files. I use it to organize PDFs for tabletop games.
I mostly built this to learn PyQt5 and surrounding build systems but it turned out actually useful.
### Instructions
It's important that you don't use quotes when you call ./configure
`. ./configure --prefix /usr/local --libdir /lib64 && make && sudo make install`

4
configure vendored

@ -6,7 +6,6 @@ do
# specify with --prefix "/whatever"
--prefix)
export PREFIX="$2"
sed "s#PREFIX := /usr/local#PREFIX := $2#g" Makefile | tee Makefile > /dev/null
shift # Remove argument name from processing
shift # Remove argument value from processing
;;
@ -14,8 +13,7 @@ do
# specify with --libdir "/libwhatver"
--libdir)
export LIBDIR="$2"
sed "s#LIBDIR := /lib#LIBDIR := $2#g" Makefile | tee Makefile > /dev/null
sed "s#LIB_DIR = [\']/lib[\']#LIB_DIR = \'$2\'#g" app.py | tee app.py > /dev/null
sed "s#LIB_DIR = [\']/lib[\']#LIB_DIR = \'$2\'#g" app.py | tee app.py
shift
shift
;;

Loading…
Cancel
Save