mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 18:20:27 +00:00
90165492a1
doesn't seem to work yet on CFW PS3 - use make pkg-signed-standalone for now on CFW PS3 until this gets sorted out.
9 lines
258 B
Python
9 lines
258 B
Python
from distutils.core import setup, Extension
|
|
|
|
module1 = Extension('pkgcrypt', sources = ['crypt.c'])
|
|
|
|
setup (name = 'pkgcrypt',
|
|
version = '1.0',
|
|
description = 'C implementation of the crypt function from pkg.py',
|
|
ext_modules = [module1])
|