summaryrefslogtreecommitdiff
path: root/scripts/package-build/radvd/package.toml
blob: e44afa18a1133f5152ab2c2e9205e7d723e112eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[[packages]]
name = "radvd"
commit_id = "f2de4764559"
scm_url = "https://github.com/radvd-project/radvd"

#build_cmd = "cd ..; ./build.sh"
build_cmd = """
./autogen.sh
./configure
make

install --directory debian/lib/systemd/system debian/usr/sbin
install --mode 0644 radvd.service debian/lib/systemd/system
install --strip --mode 0755 radvd debian/usr/sbin

# Version' field value 'v0.14-20-g613277f': version number does not start with digit
# "cut" first character from version string
fpm --input-type dir --output-type deb --name radvd \
    --version $(git describe --always | cut -c2- | tr _ -) --deb-compression gz \
    --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
    --description "RADVD router advertisement daemon" \
    --license "RADVD" -C debian --package ..
"""