Thursday, 19 November 2009

Working on a few of the Cydgets...

Facebook and Twitter should now be working and no strange things happening!

24Cydget (my favourite) is being worked on and should be better in the next few min. Am woking on a few other things with regards to 24 (good times).

Had a few requests - will look into them, one I am interested in, and while Elements will provide it, sometimes just one Element :-) is useful.

Any issues with the repo should be sorted (new versions - better make process now) - repo refreshed so mismatch should be gone.

Monday, 16 November 2009

Make Cydia Repo Script

Not sure if this is useful or not, but if you find yourself following the tutorials and want a simple ne click script to create your Packages.bz2 and deb files feel free to use the following script. I have the following structure:
/repo/apps/
containing all the apps
/repo/uploads/deb 
Which has the packages and deb files.
cd apps
find . -name .DS_Store -exec rm {} \;
for app in $( ls -1 . )
do
    dpkg -b ${app}
    mv *.deb ../upload/deb
done

cd ../upload/
rm Packages.bz2
dpkg-scanpackages . /dev/null > Packages
bzip2 Packages

Script should be placed (in the above example) in:
/repo/

Sunday, 15 November 2009

Cydia Repo for Cydget's

OK. First repo for iPhone, contains 2 Cydget's:

Twitter
Facebook

Basically just loads each respective page. I am investigating the issue with the Twitter not showing the mobile version.

Repo:

http://cranie.com/repo/

Simple!