forked from autopkg/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AdobeReaderDC.pkg.recipe; change AdobeReaderDC.install.recipe so …
…AdobeReaderDC.pkg.recipe is its parent; update AdobeReaderRepackager.py to make changes to AcroRdrDC_FOO_.pkg equivilent to those we made to Adobe Reader (non DC).pkg
- Loading branch information
1 parent
b1c3dbf
commit e1b806f
Showing
5 changed files
with
65 additions
and
11 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
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,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Description</key> | ||
<string>Downloads the current Adobe Acrobat Reader DC pkg and repackages, replacing a problematic preinstall script, | ||
and enabling installation on non-boot volumes.</string> | ||
<key>Identifier</key> | ||
<string>com.github.autopkg.pkg.AdobeReaderDC</string> | ||
<key>Input</key> | ||
<dict> | ||
<key>LANGUAGE</key> | ||
<string>English</string> | ||
<key>MAJOR_VERSION</key> | ||
<string>AcrobatDC</string> | ||
<key>OS_VERSION</key> | ||
<string>10.9.0</string> | ||
<key>NAME</key> | ||
<string>AdobeReaderDC</string> | ||
</dict> | ||
<key>MinimumVersion</key> | ||
<string>0.4.0</string> | ||
<key>ParentRecipe</key> | ||
<string>com.github.autopkg.download.AdobeReaderDC</string> | ||
<key>Process</key> | ||
<array> | ||
<dict> | ||
<key>Processor</key> | ||
<string>AdobeReaderRepackager</string> | ||
<key>Arguments</key> | ||
<dict> | ||
<key>dmg_path</key> | ||
<string>%pathname%</string> | ||
</dict> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
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
File renamed without changes.
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,9 @@ | ||
#!/bin/bash | ||
# replacement preinstall script for Adobe Acrobat Reader DC | ||
|
||
installation_path=$2 | ||
readerApp="Adobe Acrobat Reader DC.app" | ||
|
||
if [ -e "$installation_path/$readerApp" ] ; then | ||
/bin/rm -r "$installation_path/$readerApp" | ||
fi |