blob: d11f37e89d75c1559b2d87cc90158bee8840795e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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/common
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/common/images
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/share/wizards/common/scripts
install --mode=u=rw,g=r,o=r -p images/*.gif ${prefix}/share/wizards/common/images
install --mode=u=rwx,g=rx,o=rx -p scripts/*.sh ${prefix}/share/wizards/common/scripts
install --mode=u=rw,g=r,o=r -p scripts/*.pm ${prefix}/share/wizards/common/scripts
|