summaryrefslogtreecommitdiff
path: root/recipes/build-tools/intltool-m4.recipe
blob: c7a3901047d50003e3a6cbf87f4d1d02e816d007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil

class Recipe(recipe.Recipe):
    name = 'intltool-m4'
    version = '0.51.0'
    licenses = [License.GPLv2]
    stype = SourceType.TARBALL
    btype = BuildType.CUSTOM
    url = 'https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz'

    files_devel = [
            'share/aclocal/intltool.m4',
            ]

    def install(self):
        m4 = os.path.join(self.build_dir.replace('-m4', ''), 'intltool.m4')
        shutil.copy(m4, os.path.join(self.config.prefix, 'share', 'aclocal', 'intltool.m4'))