blob: 06a0cc4444bd1242bbb7370ae676e230d291c74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
inherit distutils
require python-pycrypto.inc
SRC_URI += "file://cross-compiling.patch"
# 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() {
distutils_do_install
}
|