From b88166f6c33e243b5d46a6463bfd33bbb1bc51af Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 20 Sep 2017 22:44:32 -0400 Subject: Initial commit; dbus-python (#57) * Initial commit; dbus-python * Update meta.yaml * Skip package if host is not Linux --- dbus-python/build.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 dbus-python/build.sh (limited to 'dbus-python/build.sh') diff --git a/dbus-python/build.sh b/dbus-python/build.sh new file mode 100644 index 0000000..0259769 --- /dev/null +++ b/dbus-python/build.sh @@ -0,0 +1,3 @@ +./configure --prefix=$PREFIX +make +make install -- cgit From 6f008e7f3fdeef98df5ff9215af2020a5dc89b19 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Wed, 25 Oct 2017 12:17:25 -0400 Subject: Set vars to allow libpython2.7 to be located --- dbus-python/build.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dbus-python/build.sh') diff --git a/dbus-python/build.sh b/dbus-python/build.sh index 0259769..d463597 100644 --- a/dbus-python/build.sh +++ b/dbus-python/build.sh @@ -1,3 +1,7 @@ +export CFLAGS="-I$PREFIX/include" +export LDFLAGS="-L$PREFIX/lib" +export PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig" + ./configure --prefix=$PREFIX make make install -- cgit