summaryrefslogtreecommitdiff
path: root/templates/zstd/template
blob: 7af35bb8159936351cbd10fc03d0d7b4367fa84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=zstd
version=1.5.7
build_no=1
upstream="https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz"

function do_configure {
	echo "No configure steps needed!"
}

function do_build {

	CC=gcc make -j$(nproc)
}

function do_install {
	make DESTDIR=${DESTDIR} install
}