1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
install2:
su -c 'make install'
install:
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/web_wizard
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/web_wizard/scripts
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/web_wizard/images
install --mode=u=rw,g=r,o=r -p web.wiz ${prefix}/share/wizards/web_wizard
install --mode=u=rw,g=r,o=r -p apache2.wiz ${prefix}/share/wizards/web_wizard
install --mode=a=r -p ./images/apache.png ${prefix}/share/wizards/web_wizard/images
install --mode=u=rwx,g=rx,o=rx -p scripts/*.sh ${prefix}/share/wizards/web_wizard/scripts
install --mode=u=rw,g=r,o=r -p scripts/Webconf.pm ${prefix}/share/wizards/web_wizard/scripts
install --mode=u=rw,g=r,o=r -p scripts/Apache2conf.pm ${prefix}/share/wizards/web_wizard/scripts
|