blob: 02d634cb0003722ef35b779936f6f7ddfe921940 (
plain)
1
2
3
4
5
6
7
8
9
|
inherit distutils3
require python-pycrypto.inc
# We explicitly call distutils_do_install, since we want it to run, but
# *don't* want the autotools install to run, since this package doesn't
# provide a "make install" target.
do_install() {
distutils3_do_install
}
|