blob: 6ee9061b71390051405ee2efa39fd201a92a5e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libunwind'
version = '1.3.1'
licenses = [{License.MIT: ['COPYING']}]
stype = SourceType.TARBALL
url = 'savannah://.tar.gz'
tarball_checksum = '43997a3939b6ccdf2f669b50fdb8a4d3205374728c2923ddc2354c65260214f8'
autoreconf = True
patches = ['libunwind/0001-Fix-compilation-with--fno-common.patch']
files_libs = ['libunwind']
files_devel = ['include/libunwind-*.h',
'include/unwind.h',
'%(libdir)s/pkgconfig/libunwind*.pc']
|