blob: e12d476563d0a6289311bd656d094d011bede733 (
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
28
29
30
|
#!/bin/sh
SRC=opennhrp
if [ ! -d $SRC ]; then
echo "source directory $SRC does not exist!"
echo "$ git clone https://git.code.sf.net/p/opennhrp/code opennhrp"
exit 1
fi
cd $SRC
INSTALL_DIR=debian
if [ -d $INSTALL_DIR ]; then
rm -rf $INSTALL_DIR
fi
make clean
make
install --directory debian/etc debian/usr/sbin
install --mode 0644 etc/racoon-ph1dead.sh debian/etc
install --mode 0644 etc/racoon-ph1down.sh debian/etc
install --strip --mode 0755 nhrp/opennhrp debian/usr/sbin
install --strip --mode 0755 nhrp/opennhrpctl 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 opennhrp \
--version $(git describe --always | cut -c2-) --deb-compression gz \
--maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
--description "NBMA Next Hop Resolution Protocol daemon" \
--license "MIT" -C $INSTALL_DIR --package ..
|