diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-12 20:05:16 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-12 20:05:16 -0700 |
commit | dfcc32ac9f1ebe58f99b4fcf34516897b231bacf (patch) | |
tree | f02aa515b3875c16ab4657d27dcd11798c90fe72 | |
parent | dc8de99e598a26acd51768c38ba40b8eff40a10f (diff) | |
download | pandoc-dfcc32ac9f1ebe58f99b4fcf34516897b231bacf.tar.gz |
Moved make_osx_package.sh back to root.
-rwxr-xr-x | make_osx_package.sh (renamed from osx/make_osx_package.sh) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/osx/make_osx_package.sh b/make_osx_package.sh index c28f8fe5f..168119356 100755 --- a/osx/make_osx_package.sh +++ b/make_osx_package.sh @@ -6,7 +6,8 @@ VERSION=$(grep -e '^Version' pandoc.cabal | awk '{print $2}') RESOURCES=$DIST/Resources ROOT=$DIST/pandoc DEST=$ROOT/usr/local -SCRIPTS=osx-resources +OSX=osx +SCRIPTS=$OSX/osx-resources BASE=pandoc-$VERSION ME=$(whoami) CODESIGNID="Developer ID Application: John Macfarlane" @@ -39,7 +40,7 @@ for f in $EXES; do cp $SANDBOX/share/man/man1/$f.1 $DEST/share/man/man1/ done cp $SANDBOX/share/man/man5/pandoc_markdown.5 $DEST/share/man/man5/ -cp $SCRIPTS/uninstall-pandoc.pl $DEST/bin/ +cp $OSX/uninstall-pandoc.pl $DEST/bin/ chown -R $ME:staff $DIST # gzip $DEST/share/man/man?/*.* |