diff options
author | Josiah Boothby <josiahb@gmail.com> | 2013-06-03 11:21:00 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-06-04 00:11:31 -0500 |
commit | c27f41749625483c50e1befd9ec467c7036bfd96 (patch) | |
tree | c1ca8ea222c9bea6c676884b2420b56dacb2ba8b /desktop/e16/e16.SlackBuild | |
parent | 8923ed73a4395056445d9eaa5fc237e8c76485f6 (diff) |
desktop/e16: Updated for version 1.0.13.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/e16/e16.SlackBuild')
-rw-r--r-- | desktop/e16/e16.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/e16/e16.SlackBuild b/desktop/e16/e16.SlackBuild index d4b2c579be05..dfb1dc8de777 100644 --- a/desktop/e16/e16.SlackBuild +++ b/desktop/e16/e16.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=e16 -VERSION=${VERSION:-1.0.11} +VERSION=${VERSION:-1.0.13} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -94,7 +94,7 @@ make make install DESTDIR=$PKG # Optionally install the core themes -if [[ -f $CWD/$TNAME-$TVERSION.tar.gz && $THEMES = "1" ]]; then +if [[ -f $CWD/$TNAME-$TVERSION.tar.gz && $THEMES = "YES" ]]; then cd $TMP rm -rf $TNAME-$TVERSION tar xzvf $CWD/$TNAME-$TVERSION.tar.gz @@ -113,7 +113,7 @@ if [[ -f $CWD/$TNAME-$TVERSION.tar.gz && $THEMES = "1" ]]; then fi # Optionally install the official documentation -if [[ -f $CWD/$DNAME-$DVERSION.tar.gz && $DOCS = "1" ]]; then +if [[ -f $CWD/$DNAME-$DVERSION.tar.gz && $DOCS = "YES" ]]; then cd $TMP rm -rf $DNAME-$DVERSION tar xzvf $CWD/$DNAME-$DVERSION.tar.gz @@ -152,14 +152,14 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild # Additionally, if themes and documentation are installed, copy their # documenation as well. -if [ $THEMES == "1" ]; then +if [ $THEMES == "YES" ]; then cd $TMP/$TNAME-$TVERSION for f in {AUTHORS,COPYING,ChangeLog}; do cat $f > $PKG/usr/doc/$PRGNAM-$VERSION/$f.themes done fi -if [ $DOCS == "1" ]; then +if [ $DOCS == "YES" ]; then cd $TMP/$DNAME-$DVERSION for f in {AUTHORS,COPYING,ChangeLog,README}; do cat $f > $PKG/usr/doc/$PRGNAM-$VERSION/$f.edocs |