diff options
| author | Alejandro W. Sior <aho@sior.be> | 2023-02-03 10:05:32 +0100 |
|---|---|---|
| committer | Alejandro W. Sior <aho@sior.be> | 2023-02-03 10:05:32 +0100 |
| commit | 58fa790e2249295b6c4f9cda36d4de40cf8ac9e0 (patch) | |
| tree | 8f8dbdae36a1c418876389bfc1d0956466cd13bb /zstd/build | |
| parent | df453afac07d624dd25c778f6aed84749f0b7857 (diff) | |
zstd: new package at version 1.5.2
Diffstat (limited to 'zstd/build')
| -rw-r--r-- | zstd/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zstd/build b/zstd/build new file mode 100644 index 0000000..8bdd2c9 --- /dev/null +++ b/zstd/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +for patch in *.patch; do + patch -p1 < $patch +done + +gmake +gmake PREFIX=/usr DESTDIR=$1 install + +# Relocate manual pages +mkdir $1/usr/share +mv $1/usr/man $1/usr/share |
