Skip to content

Commit

Permalink
Fix vlc recipe build (#2841)
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Dynamos authored Jul 2, 2023
1 parent aae845d commit 4ebd3a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pythonforandroid/recipes/vlc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class VlcRecipe(Recipe):
version = '3.0.0'
version = '3.0.18'
url = None
name = 'vlc'

Expand Down Expand Up @@ -52,7 +52,7 @@ def prebuild_arch(self, arch):
def build_arch(self, arch):
super().build_arch(arch)
build_dir = self.get_build_dir(arch.arch)
port_dir = join(build_dir, 'vlc-port-android')
port_dir = join(build_dir, 'vlc-port-android', 'buildsystem')
aar = self.aars[arch]
if not isfile(aar):
with current_directory(port_dir):
Expand All @@ -67,7 +67,7 @@ def build_arch(self, arch):
if not isfile(join('bin', 'VLC-debug.apk')):
shprint(sh.Command('./compile.sh'), _env=env,
_tail=50, _critical=True)
shprint(sh.Command('./compile-libvlc.sh'), _env=env,
shprint(sh.Command('./compile-medialibrary.sh'), _env=env,
_tail=50, _critical=True)
shprint(sh.cp, '-a', aar, self.ctx.aars_dir)

Expand Down

0 comments on commit 4ebd3a8

Please sign in to comment.