diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-29 20:58:18 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-29 20:58:18 +0000 |
commit | db9cebdf9152fe1c3ea1ce324a6b2aceb01807fb (patch) | |
tree | 995dd89629404fdd374f5bf3f43a27e36791f23e /make_osx_pkg_dirs | |
parent | 340cb44f0557cf9763d5e0768ef0dce1a5f5d08d (diff) | |
download | pandoc-db9cebdf9152fe1c3ea1ce324a6b2aceb01807fb.tar.gz |
Bug fixes to make_osx_pkg_dirs.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@38 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'make_osx_pkg_dirs')
-rwxr-xr-x | make_osx_pkg_dirs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/make_osx_pkg_dirs b/make_osx_pkg_dirs index d425ff075..3671f04a8 100755 --- a/make_osx_pkg_dirs +++ b/make_osx_pkg_dirs @@ -1,10 +1,16 @@ #!/bin/sh -e # make directories for a Mac OSX package +# WARNING: This isn't finished. Don't use it yet! +# Need to fix permissions & ownerships. See +# http://s.sudre.free.fr/Stuff/PackageMaker_Howto.html +# Also, think about where to put these files. I'm not sure /usr/local/bin +# is in the path by default in OSX. + PANDOC="pandoc" EXECUTABLES="pandoc markdown2html html2markdown markdown2latex latex2markdown markdown2pdf" DOCS="README README.html BUGS TODO" -MAN_PAGES=$(echo "$EXECUTABLES" | sed -e 's#\([^ ]*\)/\/man\/man1\/#\1#g') +MAN_PAGES=$(echo "$EXECUTABLES" | sed -e 's#\([^ ]*\)#man/man1/\1\.1#g') make # make sure the executables have been built make README.html |