blob: 97174865212743e7aa2ce2527d72c8ca6c150737 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libdaemon'
version = '0.14'
remotes = { 'origin':'git://git.collabora.com/git/user/asoliver/libdaemon' }
configure_sh = 'sh autogen.sh'
can_use_configure_cache = False
files_libs = ['libdaemon']
files_devel = ['include/libdaemon',
'lib/pkgconfig/libdaemon.pc'
]
configure_options = '--disable-examples'
def prepare(self):
self.config_sh = './bootstrap.sh'
|