diff options
author | davidovski <david@davidovski.xyz> | 2022-01-15 11:51:23 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-15 11:51:23 +0000 |
commit | 8f819dbdd4c0640ebce1869d1ae13752d9a9a678 (patch) | |
tree | 02ffef59cda52fb2441273cb4da759c0e291f1e2 /repo/core/lzo.xibuild | |
parent | 7da1d98fe9a3b748b9520ed9b92a2c8cc9368d3e (diff) |
added lzo for icecream
Diffstat (limited to 'repo/core/lzo.xibuild')
-rw-r--r-- | repo/core/lzo.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/core/lzo.xibuild b/repo/core/lzo.xibuild new file mode 100644 index 0000000..99ba6b4 --- /dev/null +++ b/repo/core/lzo.xibuild @@ -0,0 +1,16 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz + +DESC="Portable lossless data compression library" + +build () { + ./configure --prefix=/usr + make +} + +package() { + make DESTDIR=$PKG_DEST install +} |