diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-27 17:12:23 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-30 11:44:03 +0200 |
commit | c3f77eaf34f8d7e4da94b5b910eae999f8178af9 (patch) | |
tree | f8726af8b2829b421e3b12accd2471e9db626c9c /recipes/gnutls.recipe | |
parent | bbd0ce6a75a953d953c025f11c8335086e178d83 (diff) |
List files in recipes
Diffstat (limited to 'recipes/gnutls.recipe')
-rw-r--r-- | recipes/gnutls.recipe | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/gnutls.recipe b/recipes/gnutls.recipe index 7e5bd743..9b952447 100644 --- a/recipes/gnutls.recipe +++ b/recipes/gnutls.recipe @@ -4,9 +4,14 @@ class Recipe(recipe.Recipe): name = 'gnutls' version = '3.0.14' + license = 'LGPLv2.1+' configure_options = "--enable-local-libopts " deps = ['zlib', 'nettle', 'libgcrypt', 'libtasn1'] + files_libs = ['libgnutls', 'libgnutlsxx', 'libgnutls-openssl'] + files_bins = ['gnutls-cli', 'gnutls-serv', 'gnutls-cli-debug'] + files_devel = ['lib/pkgconfig/gnutls.pc', 'include/gnutls'] + def prepare(self): if self.config.target_platform == Platform.WINDOWS: self.configure_options += ' --enable-threads=win32' |