diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-08-01 08:26:24 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-08-01 08:26:24 +0000 |
commit | 7b7675d18721212b7431ad00ffe5b4fd75f93fd4 (patch) | |
tree | aec25f07a1d281b5c815dd38beb5a44e3a36e8b9 /common | |
parent | 8ce4083085a6ef59b4b9f8e11b3bb2285e3aed4d (diff) | |
download | drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.gz drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.bz2 drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.tar.xz drakwizard-7b7675d18721212b7431ad00ffe5b4fd75f93fd4.zip |
added install of perl modules
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile new file mode 100644 index 00000000..d11f37e8 --- /dev/null +++ b/common/Makefile @@ -0,0 +1,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 + + |