Skip to content
Barry O'Donovan edited this page Jun 4, 2013 · 3 revisions

This is a clone of the trunk of the Smarty distribution files from SVN at http://smarty-php.googlecode.com/svn/trunk/distribution/libs/.

THIS REPOSITORY IS AUTOMATICALLY SYNC'D HOURLY BY OUR SERVERS

To create your own version, just SVN clone the original repo:

cd $PREFIX
git svn clone  http://smarty-php.googlecode.com/svn/trunk/distribution/libs/ smarty

Then use the following script to keep it up to date:

#!/bin/bash

cd $PREFIX/smarty/
git svn fetch
git svn rebase
git push https://username:password@github.com/user/smarty.git master
Clone this wiki locally