Pathogen and new bundles
git-svn-id: http://photonzero.com/dotfiles/trunk@65 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
parent
9b767aed56
commit
96a93bce9e
78 changed files with 10717 additions and 0 deletions
39
.vim/bundle/sparkup/Makefile
Normal file
39
.vim/bundle/sparkup/Makefile
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
SPARKUP_PY=sparkup
|
||||
VERSION=`date '+%Y%m%d'`
|
||||
README=README.md
|
||||
|
||||
.PHONY: all textmate vim textmate-dist vim-dist plugins plugins-pre generic all-dist
|
||||
all: plugins
|
||||
|
||||
plugins-pre:
|
||||
mkdir -p distribution
|
||||
|
||||
plugins: plugins-pre all-dist
|
||||
|
||||
textmate-dist: textmate
|
||||
cd TextMate && zip -9r ../distribution/sparkup-textmate-${VERSION}.zip . && cd ..
|
||||
|
||||
vim-dist: vim
|
||||
cd vim && zip -9r ../distribution/sparkup-vim-${VERSION}.zip . && cd ..
|
||||
|
||||
generic-dist: generic
|
||||
cd generic && zip -9r ../distribution/sparkup-generic-${VERSION}.zip . && cd ..
|
||||
|
||||
all-dist:
|
||||
zip -9r distribution/sparkup-${VERSION}.zip generic vim textmate README.md -x */sparkup-readme.txt
|
||||
cp distribution/sparkup-${VERSION}.zip distribution/sparkup-latest.zip
|
||||
|
||||
generic:
|
||||
cat sparkup.py > generic/sparkup
|
||||
chmod +x generic/sparkup
|
||||
#cp ${README} generic/sparkup-readme.txt
|
||||
|
||||
textmate:
|
||||
mkdir -p TextMate/Sparkup.tmbundle/Support
|
||||
cp ${SPARKUP_PY} TextMate/Sparkup.tmbundle/Support/sparkup.py
|
||||
#cp ${README} TextMate/sparkup-readme.txt
|
||||
|
||||
vim:
|
||||
mkdir -p vim/ftplugin/html
|
||||
cp ${SPARKUP_PY} vim/ftplugin/html/sparkup.py
|
||||
#cp ${README} vim/sparkup-readme.txt
|
||||
Loading…
Add table
Add a link
Reference in a new issue