blob: 1c608d655c8ef74c124bcd499d835ecd305b6c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell
class Recipe(recipe.Recipe):
name = 'frei0r-plugins'
version = '1.5.0'
licenses = [License.LGPL]
stype = SourceType.TARBALL
url = 'https://files.dyne.org/frei0r/releases/%(name)s-%(version)s.tar.gz'
tarball_checksum = '781cf84a6c2a9a3252f54d2967b57f6de75a31fc1684371e112638c981f72b60'
autoreconf = True
patches = ['frei0r-plugins/0001-Fix-autoreconf.patch']
files_plugins = ['lib/frei0r-1']
files_devel = [
'lib/pkgconfig/frei0r.pc',
'include/frei0r.h',
]
|