blob: 3af3cc0fc59dcb140b4a80226e6fb5127af7e359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'automake'
version = '1.15.1'
licenses = [License.GPLv2]
stype = SourceType.TARBALL
url = 'http://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.xz'
deps = ['autoconf', 'gettext-m4']
files_bin = ['bin/automake', 'bin/aclocal',
'bin/automake-1.15', 'bin/aclocal-1.15']
files_share = ['share/aclocal-1.15', 'share/automake-1.15']
|