Skip to content

Commit

Permalink
Merge pull request #115 from cmangla/patch-1
Browse files Browse the repository at this point in the history
Add macOS build example to README
  • Loading branch information
DrDaveD authored Oct 30, 2023
2 parents 3f4dd29 + ad28a0e commit 012fc8d
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,31 @@ detailed instructions:

For example on Ubuntu 16.04:

sudo apt-get -y install git autoconf libtool make gcc libtool libfuse-dev liblzma-dev
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure --with-xz=/usr/lib/
make


2e. Usage
$ sudo apt-get -y install git autoconf libtool \
make gcc libtool libfuse-dev liblzma-dev
$ libtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf
$ ./configure --with-xz=/usr/lib/
$ make

2e. Example: macOS
------------------

On macOS, for example:

$ brew install autoconf automake
$ glibtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf
$ ./configure
$ make

2f. Usage
---------
You'll need a SquashFS archive to use squashfuse. If you don't already have
one, you can create one using the `mksquashfs' utility from the squashfs-tools
Expand Down

0 comments on commit 012fc8d

Please sign in to comment.