source: lang/dist/tarball/Makefile @ 9b57c4d

help
Last change on this file since 9b57c4d was 9b57c4d, checked in by pawelk <pawelk@…>, 16 years ago

Kilka zmian technicznych, troche porzadku oraz uaktualnienie dystrybucji dla rpma.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@48 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[ef85bd7]1# This makefile builds tarball distribution for utt dictionary.
2
3#
4# Some variables
5#
6DIR=$(shell pwd)
7
8# Common info about version and release
9_UTT_VER=$(shell cat ../../../app/dist/common/version.def)
10_UTT_REL=$(shell cat ../../../app/dist/common/release.def)
11
12# Temp vars
13_TARBALL_ROOT=$(DIR)/utt-$(_UTT_VER).$(_UTT_REL)
[a4d0da5]14_UTT_DIC_HOME=share/utt
[ef85bd7]15_TAR_FILE_NAME=utt.dic.$(_UTT_VER)_$(_UTT_REL)
16
17#defualt task
18.PHONY: default
19default:
20        @echo Build directory: ${UTT_DIC_BIN}
21        @echo Output directory for tarball: ${UTT_DIC_OUTPUT}
[a4d0da5]22        mkdir -p ${_TARBALL_ROOT}/${_UTT_DIC_HOME}
[ef85bd7]23        if test -n "${DIC_LANG}" -a -d ${UTT_DIC_BIN}/${DIC_LANG} ; \
24        then \
25            echo "Tworze dystrybucje ${DIC_LANG}"; \
[a4d0da5]26            mkdir -p ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}; \
27            cp -fr ${UTT_DIC_BIN}/${DIC_LANG}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/; \
28            cp -fr ${UTT_DIC_CONF_HOME}/${DIC_LANG}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/; \
29            rm -rf ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/.svn ; \
[ef85bd7]30            tar -czf ${UTT_DIC_OUTPUT}/${_TAR_FILE_NAME}.${DIC_LANG}.tar.gz utt*; \
31        else \
32            echo "Tworze pelna dystrybucje!"; \
[a4d0da5]33            cp -fr ${UTT_DIC_BIN}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/; \
34            cp -fr ${UTT_DIC_CONF_HOME}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/; \
[9b57c4d]35            find ${_TARBALL_ROOT}/${_UTT_DIC_HOME} -type d -path '*/.svn' -exec rm -rf {} \; ; \
[ef85bd7]36            tar -czf ${UTT_DIC_OUTPUT}/${_TAR_FILE_NAME}.all.tar.gz utt*; \
37        fi
[9b57c4d]38
[ef85bd7]39        rm -rf ${_TARBALL_ROOT}
40
Note: See TracBrowser for help on using the repository browser.