Build script for psp sdk supported libs

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
User avatar
sherpya
Posts: 61
Joined: Mon Oct 03, 2005 5:49 pm

Build script for psp sdk supported libs

Post by sherpya »

I've made a bash script to build all supported libs in svn, it can be handy, feel free to add it to main svn tree

without params it builds all libs specified in LIBS var inside the file,
with params it build selectively the chosen libs
http://oss.netfarm.it/psp/build_libs.sh

It works on bash, tested on linux, but it should work also in cygwin environment
rinco
Posts: 255
Joined: Fri Jan 21, 2005 2:12 pm
Location: Canberra, Australia

Post by rinco »

Nice.

Can you make it build everything in the pspware repository?
User avatar
sherpya
Posts: 61
Joined: Mon Oct 03, 2005 5:49 pm

Post by sherpya »

most of them do not build at all but I can make a script for the working projects
User avatar
sherpya
Posts: 61
Joined: Mon Oct 03, 2005 5:49 pm

Post by sherpya »

updated the script version 0.2
changes:

Code: Select all

# - Version 0.2 : * Check for gmake and fixes to work on NetBSD
#                   (and maybe also on non-GNU systems)
#                 * Removed bashism now it also works with sh
#                 * Moved SDL & co. as last targets 
#                 * Fixed some stuff (logic deps)
http://oss.netfarm.it/psp/build_libs.sh
alexmae
Posts: 22
Joined: Sat Mar 12, 2005 1:46 am

Post by alexmae »

nice to see you here too sherpya ;)
User avatar
sherpya
Posts: 61
Joined: Mon Oct 03, 2005 5:49 pm

Post by sherpya »

@alexmae
:P

@All

Version 0.3

Code: Select all

# - Version 0.3 : * Added new targets ogg/vorbis/tremor/libbulletml
you may need to change libTremor/autogen.sh
line 30:
from:

Code: Select all

&#40;libtool&#41; < /dev/null > /dev/null 2>&1 || &#123;
to

Code: Select all

&#40;libtool --version&#41; < /dev/null > /dev/null 2>&1 || &#123;
Post Reply