diff --git a/kiwixbuild/dependencies/__init__.py b/kiwixbuild/dependencies/__init__.py index 24f68c9..783f5b0 100644 --- a/kiwixbuild/dependencies/__init__.py +++ b/kiwixbuild/dependencies/__init__.py @@ -2,13 +2,13 @@ from .base import * from . import ( all_dependencies, - android_ndk, + tc_android_ndk, aria2, - armhf, - arm_musl, + tc_armhf, + tc_arm_musl, docoptcpp, - emsdk, - flatpak, + tc_emsdk, + tc_flatpak, gumbo, icu4c, ios_fat_lib, diff --git a/kiwixbuild/dependencies/android_ndk.py b/kiwixbuild/dependencies/tc_android_ndk.py similarity index 100% rename from kiwixbuild/dependencies/android_ndk.py rename to kiwixbuild/dependencies/tc_android_ndk.py diff --git a/kiwixbuild/dependencies/arm_musl.py b/kiwixbuild/dependencies/tc_arm_musl.py similarity index 100% rename from kiwixbuild/dependencies/arm_musl.py rename to kiwixbuild/dependencies/tc_arm_musl.py diff --git a/kiwixbuild/dependencies/armhf.py b/kiwixbuild/dependencies/tc_armhf.py similarity index 100% rename from kiwixbuild/dependencies/armhf.py rename to kiwixbuild/dependencies/tc_armhf.py diff --git a/kiwixbuild/dependencies/emsdk.py b/kiwixbuild/dependencies/tc_emsdk.py similarity index 100% rename from kiwixbuild/dependencies/emsdk.py rename to kiwixbuild/dependencies/tc_emsdk.py diff --git a/kiwixbuild/dependencies/flatpak.py b/kiwixbuild/dependencies/tc_flatpak.py similarity index 100% rename from kiwixbuild/dependencies/flatpak.py rename to kiwixbuild/dependencies/tc_flatpak.py