forked from Lainports/opnsense-ports
15 lines
388 B
Bash
15 lines
388 B
Bash
#!/bin/sh
|
|
|
|
PERL5LIB=%%PREFIX%%/lib; export PERL5LIB
|
|
|
|
perl %%PREFIX%%/libexec/backuppc/configure.pl \
|
|
--config-only \
|
|
--bin-path perl=%%PREFIX%%/bin/perl \
|
|
--config-dir %%ETCDIR%% \
|
|
--cgi-dir %%CGIDIR%% \
|
|
--data-dir /var/db/BackupPC \
|
|
--fhs \
|
|
--html-dir %%WWWDIR%% \
|
|
--html-dir-url /backuppc \
|
|
--install-dir %%PREFIX%% \
|
|
--log-dir /var/log/BackupPC
|