- Using Make: ---------------------------------------------------

 To install:

  $ make
  $ make install

  Edit /etc/slapt-get/slapt-getrc (see README for details)

 To uninstall:

  $ make uninstall

- Using pkgtools: -----------------------------------------------

 To install:

  $ make pkg
  $ installpkg ./pkg/slapt-get-${VERSION}-${ARCH}-${RELEASE}.tgz

 To uninstall:
  $ removepkg slapt-get-${VERSION}-${ARCH}-${RELEASE}


You will want to customize the values within /etc/slapt-get/slapt-getrc.
See README for more details.


- Using git: -----------------------------------------------

 git clone git://software.jaos.org/var/cache/git/slapt-get


- Cross compiling the slapt-get source

You should have the following variables in your environment or
with the make invocation: CFLAGS, LDFLAGS, ARCH, CC, STRIP, AR, and RANLIB

For example: 

  CC=armv7l-unknown-linux-uclibcgnueabi-gcc \
  AR=armv7l-unknown-linux-uclibcgnueabi-ar \
  RANLIB=armv7l-unknown-linux-uclibcgnueabi-ranlib \
  STRIP=armv7l-unknown-linux-uclibcgnueabi-strip \
  CFLAGS=-Os -pipe \
  LDFLAGS=-lintl \
    make

