Go to file
2019-05-11 11:16:59 +02:00
.idea readded intellij workspace files 2019-05-08 19:56:43 +02:00
src some code improvements 2019-05-11 11:09:48 +02:00
.gitignore readded intellij workspace files 2019-05-08 19:56:43 +02:00
CMakeLists.txt added make install function to cmake file 2019-05-10 21:37:08 +02:00
README.md edited readme file 2019-05-11 11:16:59 +02:00

DynuIPRefresher

Build

Linux

Download source files

git clone https://github.com/Lukas-Heiligenbrunner/DynuIPRefresher.git

cd into downloaded files and Generate makefiles:

cmake .

compile project

make

install it to the system

make install

Create a Debian package

rename Project folder to lower case:

mv DynuIPRefresher iprefresher

cd iprefresher

pack source in a tar.gz archive

tar -zcvf iprefresher-1.0.tar.gz *

create debian/ folder and create example config files

dh_make -f iprefresher-1.0.tar.gz

recently packed archive is useless now, delete it

rm iprefresher-1.0.tar.gz

move to debian/ folder:

cd debian

remove useless files:

rm *.ex *.EX README.Debian README.source

edit control file

nano control

Section: net
Priority: optional
Maintainer: Lukas Heiligenbrunner <lukas@unknown>
Build-Depends: debhelper (>= 10)
Standards-Version: 4.1.2

Package: iprefresher
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: a dynu.net ip refresher written in c++
 a dynu.net ip refresher written in c++

buld .deb package

dpkg-buildpackage -S -us -uc

dpkg-buildpackage -us -uc