Announcement: code is now stable
#16
Wow! That branch looks so good. Nice work!
Can't wait to test/translate/contribute by writing controller addons!
Reply
#17
Awesome work as always and congrats on getting this far.
Reply
#18
Congratulations! :-)
Is a windows build available somewhere?
Reply
#19
Congratulations, this awesome!
Reply
#20
garbear: Wow, that was good news!.. Thanks for sharing your great work Smile.
Reply
#21
this is great news, thanks for all the hard work garbear
Reply
#22
Really, this is the most-looked-forward-to feature on my end, since I do a lot of stuff with RCB right now... if you get the limelight plugin going as well (as far as I know someone works on that in context of GSOC?) I might be able to go "full KODI" on my box (right now it is linux, integrating several external emulators with RCB, and steam big picture for in home streaming...) keep up the good work, we all love you!
Reply
#23
Hi, I'm sort of a noob at this sort of thing. Can someone please write a small guide on how to compile and install a build of this for Ubuntu?

Fantastic work!! Looks unbelievable!!
Reply
#24
I'm not on ubuntu, but this is what I do (and what garbear has already added to all his readme files too):
I assume your working directory is like: /home/user/devel or sth like that, otherwise the install directory matches your develop directory, then you need to adapt DESTDIR and PREFIX when building the addons.
Code:
git clone https://github.com/garbear/xbmc.git kodi
cd kodi
./bootstrap && ./configure --prefix=/usr && make -j8
make install
make -C tools/depends/target/binary-addons clean
make -C tools/depends/target/binary-addons PREFIX=/usr ADDONS="peripheral.joystick game.libretro game.libretro.nestopia"
Reply
#25
also

Code:
make -C tools/depends/target/binary-addons PREFIX=$HOME/kodi ADDONS="peripheral.joystick game.libretro game.libretro.nestopia"

where $HOME/kodi is the prefix you used in ./configure --prefix=/usr
Reply
#26
and run make install instead of make install DESTDIR=$HOME/kodi. setting DESTDIR doesn't work right.
Reply
#27
lol - I use DESTDIR every time, didn't see any issues right now.
NVM, I edited my original post to reflect your changes.
Reply
#28
DESTDIR works fine, it just does what it is designed to do (it is a prefix to the prefix). if -DPACKAGE_ZIP=1 is passed, you get the expected result, since that installs to <addonid> ignoring the prefix (it's meant to be used to build .zips).
Reply
#29
my guess is that still only x86 x64 and no ARM support ?
Reply
#30
nobody focused on arm. if you send patches that is confirmed working on your platform, they will be accepted. it will mostly be adding the correct make command to the CMakeLists.txt in the addons. there's even placeholder code for droid etc in there.
Reply

Logout Mark Read Team Forum Stats Members Help
Announcement: code is now stable6