install.sh 294 B

123456789101112
  1. #!/bin/bash
  2. set -e
  3. # Change to the source directory
  4. cd sources/xz
  5. echo "Installing xz..."
  6. # Install to the specified destination directory
  7. make install DESTDIR=${DESTDIR} prefix=${PREFIX} libdir=${LIBDIR} mandir=${MANDIR} infodir=${INFODIR} datadir=${DATADIR}
  8. echo "Installation completed."