Added DESTDIR: Support for Staged Installs

reference: https://www.gnu.org/prep/standards/html_node/DESTDIR.html
This commit is contained in:
Curtis Lee Bolin 2022-04-29 06:40:04 -05:00
parent 2304a2bc2e
commit fc0279c6ec

View file

@ -64,14 +64,14 @@ endif
endif
install: all
install -d ${PREFIX}/bin ${PREFIX}/etc ${PREFIX}/etc/i2pd ${PREFIX}/etc/i2pd/tunnels.conf.d ${PREFIX}/usr ${PREFIX}/usr/share ${PREFIX}/usr/share/doc/i2pd ${PREFIX}/usr/share/i2pd ${PREFIX}/usr/share/man ${PREFIX}/usr/share/man/man1 ${PREFIX}/var/lib ${PREFIX}/var/lib/i2pd
install -m 755 ${I2PD} ${PREFIX}/bin/
install -m 644 contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf ${PREFIX}/etc/i2pd
@cp -R contrib/certificates ${PREFIX}/usr/share/i2pd/
install -m 644 ChangeLog LICENSE README.md contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf ${PREFIX}/usr/share/doc/i2pd
@gzip -kf debian/i2pd.1 && install debian/i2pd.1.gz ${PREFIX}/usr/share/man/man1
@ln -sf ${PREFIX}/usr/share/i2pd/certificates ${PREFIX}/var/lib/i2pd/
@ln -sf ${PREFIX}/etc/i2pd/tunnels.conf.d ${PREFIX}/var/lib/i2pd/tunnels.d
@ln -sf ${PREFIX}/etc/i2pd/i2pd.conf ${PREFIX}/var/lib/i2pd/i2pd.conf
@ln -sf ${PREFIX}/etc/i2pd/subscriptions.txt ${PREFIX}/var/lib/i2pd/subscriptions.txt
@ln -sf ${PREFIX}/etc/i2pd/tunnels.conf ${PREFIX}/var/lib/i2pd/tunnels.conf
install -d $(DESTDIR)${PREFIX}/bin $(DESTDIR)${PREFIX}/etc $(DESTDIR)${PREFIX}/etc/i2pd $(DESTDIR)${PREFIX}/etc/i2pd/tunnels.conf.d $(DESTDIR)${PREFIX}/usr $(DESTDIR)${PREFIX}/usr/share $(DESTDIR)${PREFIX}/usr/share/doc/i2pd $(DESTDIR)${PREFIX}/usr/share/i2pd $(DESTDIR)${PREFIX}/usr/share/man $(DESTDIR)${PREFIX}/usr/share/man/man1 $(DESTDIR)${PREFIX}/var/lib $(DESTDIR)${PREFIX}/var/lib/i2pd
install -m 755 ${I2PD} $(DESTDIR)${PREFIX}/bin/
install -m 644 contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf $(DESTDIR)${PREFIX}/etc/i2pd
@cp -R contrib/certificates $(DESTDIR)${PREFIX}/usr/share/i2pd/
install -m 644 ChangeLog LICENSE README.md contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf $(DESTDIR)${PREFIX}/usr/share/doc/i2pd
@gzip -kf debian/i2pd.1 && install debian/i2pd.1.gz $(DESTDIR)${PREFIX}/usr/share/man/man1
@ln -sf ${PREFIX}/usr/share/i2pd/certificates $(DESTDIR)${PREFIX}/var/lib/i2pd/
@ln -sf ${PREFIX}/etc/i2pd/tunnels.conf.d $(DESTDIR)${PREFIX}/var/lib/i2pd/tunnels.d
@ln -sf ${PREFIX}/etc/i2pd/i2pd.conf $(DESTDIR)${PREFIX}/var/lib/i2pd/i2pd.conf
@ln -sf ${PREFIX}/etc/i2pd/subscriptions.txt $(DESTDIR)${PREFIX}/var/lib/i2pd/subscriptions.txt
@ln -sf ${PREFIX}/etc/i2pd/tunnels.conf $(DESTDIR)${PREFIX}/var/lib/i2pd/tunnels.conf