We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libxslt
1 parent 33cee11 commit c0b2fd8Copy full SHA for c0b2fd8
tests/recipes/test_libxslt.py
@@ -0,0 +1,15 @@
1
+import unittest
2
+from tests.recipes.recipe_lib_test import BaseTestForMakeRecipe
3
+
4
5
+class TestLibxsltRecipe(BaseTestForMakeRecipe, unittest.TestCase):
6
+ """
7
+ An unittest for recipe :mod:`~pythonforandroid.recipes.libxslt`
8
9
+ recipe_name = "libxslt"
10
+ sh_command_calls = ["./autogen.sh", "autoreconf", "./configure"]
11
+ extra_env_flags = {
12
+ "CONFIG_SHELL": "/bin/bash",
13
+ "SHELL": "/bin/bash",
14
+ "LIBS": "-lxml2 -lz -lm",
15
+ }
0 commit comments