diff options
Diffstat (limited to 'repo/lzip/lzip.xibuild')
-rw-r--r-- | repo/lzip/lzip.xibuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/lzip/lzip.xibuild b/repo/lzip/lzip.xibuild new file mode 100644 index 0000000..280eb8a --- /dev/null +++ b/repo/lzip/lzip.xibuild @@ -0,0 +1,24 @@ +#!/bin/sh + +NAME="lzip" +DESC="Lzip is a lossless data compressor" + +MAKEDEPS="" + +PKG_VER=1.23 +SOURCE="https://download.savannah.gnu.org/releases/lzip/lzip-$PKG_VER.tar.gz" + +build() { + ./configure \ + --prefix=/usr + make +} + +check() { + make check +} + +package() { + make DESTDIR=$PKG_DEST install +} + |