Skip to content

Commit

Permalink
Added doxygen html files for version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaenrig-ifx committed Aug 19, 2019
0 parents commit 5dd125a
Show file tree
Hide file tree
Showing 1,476 changed files with 78,236 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>TLE5012B</string>
<key>CFBundleIdentifier</key>
<string>org.doxygen.Project</string>
<key>CFBundleVersion</key>
<string>2.0.1</string>
<key>DocSetFeedName</key>
<string>Doxygen generated docs</string>
<key>DocSetPublisherIdentifier</key>
<string>org.doxygen.Publisher</string>
<key>DocSetPublisherName</key>
<string>InfineonTechnologiesAG</string>
<key>DashDocSetFamily</key>
<string>doxy</string>
<key>DocSetPlatformFamily</key>
<string>doxygen</string>
</dict>
</plist>
38 changes: 38 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
DOCSET_NAME=org.doxygen.Project.docset
DOCSET_CONTENTS=$(DOCSET_NAME)/Contents
DOCSET_RESOURCES=$(DOCSET_CONTENTS)/Resources
DOCSET_DOCUMENTS=$(DOCSET_RESOURCES)/Documents
DESTDIR=~/Library/Developer/Shared/Documentation/DocSets
XCODE_INSTALL="$(shell xcode-select -print-path)"

all: docset

docset:
mkdir -p $(DOCSET_DOCUMENTS)
cp Nodes.xml $(DOCSET_RESOURCES)
cp Tokens.xml $(DOCSET_RESOURCES)
cp Info.plist $(DOCSET_CONTENTS)
tar --exclude $(DOCSET_NAME) \
--exclude Nodes.xml \
--exclude Tokens.xml \
--exclude Info.plist \
--exclude Makefile -c -f - . \
| (cd $(DOCSET_DOCUMENTS); tar xvf -)
$(XCODE_INSTALL)/usr/bin/docsetutil index $(DOCSET_NAME)
rm -f $(DOCSET_DOCUMENTS)/Nodes.xml
rm -f $(DOCSET_DOCUMENTS)/Info.plist
rm -f $(DOCSET_DOCUMENTS)/Makefile
rm -f $(DOCSET_RESOURCES)/Nodes.xml
rm -f $(DOCSET_RESOURCES)/Tokens.xml

clean:
rm -rf $(DOCSET_NAME)

install: docset
mkdir -p $(DESTDIR)
cp -R $(DOCSET_NAME) $(DESTDIR)

uninstall:
rm -rf $(DESTDIR)/$(DOCSET_NAME)

always:
Loading

0 comments on commit 5dd125a

Please sign in to comment.