1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
install2:
su -c 'make install'
install:
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/usr/share/wizards
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/usr/share/wizards/nfs_wizard
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/usr/share/wizards/nfs_wizard/scripts
mkdir -p --mode=u=rwx,g=rx,o=rx ${prefix}/usr/share/wizards/nfs_wizard/images
install --mode=u=rwx,g=rx,o=rx -p nfs.wiz ${prefix}/usr/share/wizards/nfs_wizard
install --mode=u=rwx,g=rx,o=rx -p nfs.en.wpo ${prefix}/usr/share/wizards/nfs_wizard
install --mode=u=rwx,g=rx,o=rx -p nfs.fr.wpo ${prefix}/usr/share/wizards/nfs_wizard
install --mode=u=rwx,g=rx,o=rx -p nfs.de.wpo ${prefix}/usr/share/wizards/nfs_wizard
install --mode=u=rwx,g=rx,o=rx -p nfs.es.wpo ${prefix}/usr/share/wizards/nfs_wizard
install --mode=u=rwx,g=rx,o=rx -p nfs.it.wpo ${prefix}/usr/share/wizards/nfs_wizard
install --mode=a=r -p ./images/NFS.jpg ${prefix}/usr/share/wizards/nfs_wizard/images
install --mode=u=rwx,g=rx,o=rx -p scripts/*.sh ${prefix}/usr/share/wizards/nfs_wizard/scripts
|