HI all,
I’m testing a python library (wrapper on a so module
).
I have to setup libui
to test it (real usage), and libui
depends on gtk3
.
On my circle.yml
dependencies:
pre:
- sudo apt-get -qq update
- sudo apt-get install apt-transport-https curl
- echo 'deb https://packagecloud.io/waghanza/plunder/ubuntu/ trusty main' | sudo tee /etc/apt/sources.list.d/plunder.list
- sudo curl -sSL https://packagecloud.io/waghanza/plunder/gpgkey | sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get -qy install libui
And I vae this message on circle
libui : Depends: gtk+3.0 but it is not installable
Is gtk3 blaclisted on circleci
?
Regards,