| 1234567891011121314151617 |
- #!/bin/bash
- set -e
- # Change to the source directory
- cd sources/xz
- echo "Configuring xz..."
- # Configure with standard options and using all available threads
- ./configure --prefix=${PREFIX} --libdir=${LIBDIR} --mandir=${MANDIR} --infodir=${INFODIR} --datadir=${DATADIR} --disable-silent-rules
- echo "Building xz..."
- # Build using all available threads
- make -j$(nproc)
- echo "Build completed."
|