mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	If not deployment of the package will fail with: Version field value 'v0.14-20-g613277f': version number does not start with digit
		
			
				
	
	
		
			31 lines
		
	
	
		
			996 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			996 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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 ..
 |