#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2007 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt

from pisi.actionsapi import pisitools, autotools, get

tex_root = '/usr/share/texmf'
culmusdir = '/usr/share/fonts/culmus/'

def make():
    autotools.make("culmusdir=%s TEX_ROOT=%s" % (culmusdir, tex_root))

def install():
    autotools.install("culmusdir=%s TEX_ROOT=%s" % 
            (culmusdir, \
            get.installDIR() + tex_root))
