Added Marmalade Repo support

This commit is contained in:
Maciej Mazur 2011-11-21 00:50:09 +01:00
parent cfa6d87355
commit b45bf32a7f
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1 @@
(define-package "color-theme-solarized" "%%version%%" "Solarized themes for Emacs" '((color-theme "6.6.1")))

17
makepkg.sh Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
version=$1
if [ "$version" = "" ]; then
version=$(date -u '+%Y%m%d')
fi
echo "version = $version"
dir="color-theme-solarized-${version}"
mkdir $dir
cp *.el $dir
sed -i "s/%%version%%/$version/" "$dir/color-theme-solarized-pkg.el"
tar cf color-theme-solarized-${version}.tar $dir