-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 05af02c
Showing
10 changed files
with
2,307 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.pydevproject | ||
.project | ||
.settings | ||
*~ | ||
.*.sw[po] | ||
*.dat | ||
*.pyc | ||
build | ||
*.prof | ||
siteconf.py | ||
doc/hedge-notes.pdf | ||
*.vtk | ||
*.silo | ||
*.session | ||
dump.py | ||
*.orig | ||
/Makefile | ||
*.png | ||
tags | ||
*.vtu | ||
*.pvtu | ||
*.pvd | ||
doc/user-reference | ||
doc/dev-reference | ||
*.poly | ||
*.node | ||
*.bak | ||
*.tif | ||
*.mpeg | ||
*-journal | ||
visitlog.py | ||
*.log | ||
.figleaf | ||
dist | ||
*.egg* | ||
MANIFEST | ||
*.patch | ||
*.LOCAL.[0-9]* | ||
*.REMOTE.[0-9]* | ||
*.BASE.[0-9]* | ||
tmp | ||
temp* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Hi, welcome. | ||
|
||
This Python package uses aksetup for installation, which means that | ||
installation should be easy and quick. | ||
|
||
If you don't want to continue reading, just try the regular | ||
|
||
./configure.py --help | ||
./configure.py --some-options | ||
make | ||
sudo make install | ||
|
||
That should do the trick. (By the way: If a config option says "several ok", | ||
then you may specify several values, separated by commas.) | ||
|
||
aksetup also supports regular distutils installation, without using | ||
configure: | ||
|
||
python setup.py build | ||
sudo python setup.py install | ||
|
||
In this case, configuration is obtained from files in this order: | ||
|
||
/etc/aksetup-defaults.py | ||
$HOME/.aksetup-defaults.py | ||
$PACKAGEDIR/siteconf.py | ||
|
||
Once you've run configure, you can copy options from your siteconf.py file to | ||
one of these files, and you won't ever have to configure them again manually. | ||
In fact, you may pass the options "--update-user" and "--update-global" to | ||
configure, and it will automatically update these files for you. | ||
|
||
This is particularly handy if you want to perform an unattended or automatic | ||
installation via easy_install. |
Oops, something went wrong.