summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-31 18:29:31 +0000
committerdavidovski <david@davidovski.xyz>2022-01-31 18:29:31 +0000
commit42ac398f493763b408bb0756643b32787cd29f1f (patch)
tree5b0d2a4af1c6a886a2f089c84c901d2c0c200b6e
parentca2408fb745102268c2f610a5c777b262f343cae (diff)
updated lz4 to use make files
-rw-r--r--repo/system/lz4.xibuild6
1 files changed, 4 insertions, 2 deletions
diff --git a/repo/system/lz4.xibuild b/repo/system/lz4.xibuild
index 72f05d7..ae71de7 100644
--- a/repo/system/lz4.xibuild
+++ b/repo/system/lz4.xibuild
@@ -9,9 +9,11 @@ DESC="A lossless compression algorithm, providing high compression speeds"
build () {
- make
+ make -C lib PREFIX=/usr
+ make -C programs PREFIX=/usr lz4 lz4c
}
+
package () {
- make DESTDIR=$PKG_DEST install
+ make PREFIX=/usr DESTDIR=$PKG_DEST install
}