White Shadow Icon Labels Theme

This Winterboard theme provides white text labels with shadowing for your icons.

Revision History:

  • 1.0 Initial release.
Posted in Cydia | Comments Off on White Shadow Icon Labels Theme

WeatherIcon for iPad Theme

This is a WinterBoard theme that resizes WeatherIcon so it displays correctly on the iPad. Requires WinterBoard, WeatherIcon and Weather.app installed on iPad.

Note: To get Weather.app on your iPad, use SSH or other method to copy it from the Applications folder on an iPhone. If you have an iPad2 you may install the iPad2 Weather package from the pepper.net repo.

Revision History:

  • 1.0-1 Dependencies maintenance.
  • 1.0 Initial release.
Posted in Cydia | Comments Off on WeatherIcon for iPad Theme

iPad LiveClock Themes

This is a collection of themes for LiveClock on the iPad. Since the iPad uses a slightly larger default icon size than the iPhone or iPod Touch, the existing LiveClock and associated themes will appear too small and distorted. These themes support the larger size and display correctly.

Requires Winterboard, LiveClock and MobileTimer.app installed on the iPad.

Note: To get MobileTimer.app on your iPad, use SSH or other method to copy it from the Applications folder on an iPhone. If you have an iPad2 you may install the iPad2 Clock package from the pepper.net repo.

Revision History:

  • 1.5 Added the necessary “@2x” files to support Retina (3rd and 4th generation) iPads.
  • 1.4 Added a couple of round clocks. Verified compatible with iOS6.
  • 1.2-2 Corrected the alignment of some of the hands.
  • 1.1 Renamed themes; added “original” clock; added dependencies to auto-install LiveClock and Winterboard if not already installed.
  • 1.0 Initial release.
Posted in Cydia | 3 Comments

How to build and host a Cydia Repo

Over at JBQA I’ve seen the occasional query about how to host a Cydia Repository. Since I figured it all out and did it myself, I should go ahead and tell how I did it. I started by reading the very good article written by @Saurik and found some other bits and pieces elsewhere and by using the time-tested trial and error method.

Introduction

There are several things you have to do in order to host a Cydia repo. It is not really that hard. Believe it or not, I do a good portion of the setup and maintenance of my Pepper dot Net repo (www.pepper.net) directly on my iPhone.

A repository is simply a particular arrangement of files on a website, so the first thing you need is a website hosted somewhere. The only requirements are that it support HTTP on port 80, and has (or you can add) a defined MIME-type of “application/x-deb” for .deb files.

You also need to know how to create and maintain package (.deb) files, and how to generate the Packages and Release files. In this article I’ll be covering all of this except for the actual package files, that will need another more detailed article all its own. In the meantime, you can read Saurik’s definitive article on the subject. His article mentions a tool “dpkg-scanpackages” which is included in my repotools package, mostly because I got tired of installing it manually every time I wipe my development device.

Requirements

Before this will work, you need the APT packaging system, this file (or install repotools package) and some implementation of Perl. If you’re going to do this on your iDevice, APT is already there as part of Cydia, and I get the perl package from CoreDev.nl.

Here’s an overview of the repo file structure. Simply create and upload each of these to your website. When everything is there you can add your repo to Cydia and hopefully everything will work.

Control files

The first three files should appear in the root folder of your website (technically the “root” of the URL you intend to use for the repo, it doesn’t have to be the “root” of the whole site).

  • CydiaIcon.png
    Use your favorite PNG editing program to create an icon. It will appear in Cydia (1.1 and later) next to your repo in the “Manage Sources” area.

 

  • Packages.bz2
    This file is generated from the individual control files of each of your packages and then compressed. It has a specific format that I won’t get into at this point, but the important thing to remember is you need to regenerate it any time you add, change or delete packages. The commands I use are:

    ./dpkg-scanpackages -m [name.of.repo.folder] /dev/null >Packages

    followed by

    bzip2 Packages
  • Release
    This is a plaintext file containing some basic information about your repo. The fields are self explanatory and there are additonal, optional fields. These few fields are plenty enough to get started. Among other things, this information determines part of what appears in the description of your packages when viewed in Cydia.
Origin: Pepper dot Net
Label: PepperdotNet
Suite: stable
Version: 0.3
Architectures: iphoneos-arm
Components: main
Description: Welcome to the experimental repository from www.pepper.net! @PepperdotNet on Twitter

Package Files

Put all of your packages (the .deb files) in the repo folder. While technically they could be in the root, I suggest a separate folder to keep things organized. It works best if the name of this folder is exactly the same relative to the root, as where the packages were when you generated the Packages.bz2 file relative to where you ran the command from.

As mentioned before, you’ll need to regenerate Packages.bz2 anytime you add, change or delete packages.

Conclusion

That’s about all you need to know to get started hosting your own Cydia repository. Good luck, and let me know in the comments area if you have any questions and something about your new repo!

Posted in Apple iDevices, Cydia, Technology | 4 Comments