-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackaging.mk
More file actions
executable file
·35 lines (24 loc) · 1.25 KB
/
Copy pathpackaging.mk
File metadata and controls
executable file
·35 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Available make command
# ------------------------------------------------------------------------------
COMMANDS = distro compile install-source build build-source install dput clean
# PPA archive
# ------------------------------------------------------------------------------
PPA_NAME=ppa:riipandi/experimental
DEBEMAIL="ar.is@outlook.com"
DEBFULLNAME="Aris Ripandi"
# List of target distributions
# ------------------------------------------------------------------------------
DISTROS = xenial bionic
# Packages version
# ------------------------------------------------------------------------------
PERL_VERSION="5.26.1"
PCRE_VERSION="8.43"
ZLIB_VERSION="1.2.11"
OPENSSL_VERSION="1.1.1d"
MAXMIND_VERSION=$(shell echo `curl -s "https://api.github.com/repos/maxmind/libmaxminddb/releases/latest" | jq -r '.tag_name'` | cut -d '-' -f 2)
NGX_VERSION=$(shell echo `curl -s "https://api.github.com/repos/nginx/nginx/tags" | jq -r '.[0].name'` | cut -d '-' -f 2)
NGX_FANCYINDEX=$(shell echo `curl -s "https://api.github.com/repos/aperezdc/ngx-fancyindex/releases/latest" | jq -r '.tag_name'` | cut -d 'v' -f 2)
# Nginx user and group name
# ------------------------------------------------------------------------------
NGX_USER="webmaster"
NGX_GROUP="webmaster"