diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/icecream.xibuild | 2 | ||||
-rw-r--r-- | repo/core/lzo.xibuild | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/repo/core/icecream.xibuild b/repo/core/icecream.xibuild index 20a7742..ceabc6b 100644 --- a/repo/core/icecream.xibuild +++ b/repo/core/icecream.xibuild @@ -1,6 +1,6 @@ #!/bin/bash -DEPS=(gcc python libcap-ng) +DEPS=(gcc python libcap-ng lzo) SOURCE=https://github.com/icecc/icecream/releases/download/1.3.1/icecc-1.3.1.tar.xz 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 +} |