Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. OLANG=$LANG
  3. export LANG="C"
  4.  
  5. [ -x ./autogen.sh ] && ./autogen.sh
  6.  
  7. if [ -x ./configure ]; then
  8. ./configure
  9. --prefix=/ffp/
  10. --bindir=/ffp/bin/
  11. --sbindir=/ffp/sbin/
  12. --sysconfdir=/ffp/etc
  13. --localstatedir=/ffp/var
  14. --libdir=/ffp/lib/
  15. --includedir=/ffp/include/
  16. --datarootdir=/ffp/share/
  17. --libexecdir=/ffp/libexec/
  18. fi
  19. make
  20. make strip
  21. make install
  22.  
  23. export LANG=$OLANG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement