summaryrefslogtreecommitdiff
path: root/scripts/package-build/openvpn-otp/package.toml
blob: 5143086446a9129fed86c1c1b1f1e77ee019f0e7 (plain)
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
[[packages]]
name = "openvpn-otp"
commit_id = "9781ff1"
scm_url = "https://github.com/evgeny-gridasov/openvpn-otp"

# build_cmd = "cd ..; ./build-openvpn-otp.sh"
build_cmd = """
./autogen.sh
./configure --prefix=/usr
make
mkdir -p usr/lib/openvpn
cp src/.libs/openvpn-otp.so usr/lib/openvpn

fpm --input-type dir --output-type deb --name openvpn-otp \
    --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
    --description "OpenVPN OTP Authentication support." \
    --depends openvpn --architecture $(dpkg --print-architecture) \
    --version $(git describe --tags --always | cut -c2-) --deb-compression gz usr
"""


[dependencies]
packages = [
  "debhelper",
  "libssl-dev",
  "openvpn"
]