12 lines
347 B
Makefile
12 lines
347 B
Makefile
all:
|
|
echo "download the current mattermost tarball"
|
|
echo then build the package using the files in .debian/
|
|
|
|
clean:
|
|
rm -rf .debian/files/opt/
|
|
|
|
download:
|
|
wget -c https://releases.mattermost.com/7.3.0/mattermost-7.3.0-linux-amd64.tar.gz
|
|
mkdir -p .debian/files/opt/
|
|
cd .debian/files/opt/ && tar xfz ../../../mattermost-7.3.0-linux-amd64.tar.gz
|