lbry-android-sdk/p4a/tests/recipes/test_libxslt.py

16 lines
461 B
Python
Raw Normal View History

2022-11-29 21:35:24 +01:00
import unittest
from tests.recipes.recipe_lib_test import BaseTestForMakeRecipe
class TestLibxsltRecipe(BaseTestForMakeRecipe, unittest.TestCase):
"""
An unittest for recipe :mod:`~pythonforandroid.recipes.libxslt`
"""
recipe_name = "libxslt"
sh_command_calls = ["./autogen.sh", "autoreconf", "./configure"]
extra_env_flags = {
"CONFIG_SHELL": "/bin/bash",
"SHELL": "/bin/bash",
"LIBS": "-lxml2 -lz -lm",
}