Skip to content

Commit

Permalink
added non-working recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Neizvestnyj committed Jul 26, 2022
1 parent 4a4fe92 commit bd8035b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions recipes/ios/stl2obj/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from kivy_ios.toolchain import CythonRecipe


class Stl2ObjRecipe(CythonRecipe):
site_packages_name = 'stl2obj'
version = 'master'
url = '/Users/neizvestnyj/PycharmProjects/stl2obj/lib'
depends = ['python3', 'hostpython3']
library = f"lib{site_packages_name}.a"

def install(self):
self.install_python_package(name=self.so_filename(self.site_packages_name),
is_dir=False
)


recipe = Stl2ObjRecipe()

0 comments on commit bd8035b

Please sign in to comment.