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.
1 parent 8c23ea2 commit d197833Copy full SHA for d197833
pythonforandroid/recipes/libogg/__init__.py
@@ -1,16 +1,15 @@
1
-from pythonforandroid.recipe import NDKRecipe
+from pythonforandroid.recipe import Recipe
2
from pythonforandroid.toolchain import current_directory, shprint
3
from os.path import join
4
import sh
5
6
7
-class OggRecipe(NDKRecipe):
+class OggRecipe(Recipe):
8
version = '1.3.3'
9
url = 'http://downloads.xiph.org/releases/ogg/libogg-{version}.tar.gz'
10
+ built_libraries = {'libogg.so': 'src/.libs'}
11
- generated_libraries = ['libogg.so']
12
-
13
- def build_arch(self, arch):
+ def do_build_libs(self, arch):
14
with current_directory(self.get_build_dir(arch.arch)):
15
env = self.get_recipe_env(arch)
16
flags = [
0 commit comments