summaryrefslogtreecommitdiff
path: root/rdiff-backup/src/compilec.py
blob: 275f57a0363c842873ba76ec7fe6c3e86f1a4c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

import sys, os
from distutils.core import setup, Extension

assert len(sys.argv) == 1
sys.argv.append("build")

setup(name="CModule",
	  version="0.9.0",
	  description="rdiff-backup's C component",
	  ext_modules=[Extension("C", ["cmodule.c"])])

assert not os.system("mv build/lib.linux-i686-2.2/C.so .")
assert not os.system("rm -rf build")