OESF Portables Forum
Model Specific Forums => Sharp Zaurus => Zaurus - pdaXrom => Topic started by: Antikx on February 25, 2007, 05:49:44 pm
-
Hello,
I'm trying to create an IPK from a binary, a script and a xmodmap file: http://www.tyrannozaurus.com/?q=node/259#comment-963 (http://www.tyrannozaurus.com/?q=node/259#comment-963)
Besides the binary I have a script to go into: /usr/local/bin
and a xmodmap file: /usr/local/lib/scummvm
How do I go about incorporating that into the ipk?
thanks in advance
-
Isn't it simply a matter of adding all the things to the paths in your build directories, then make a data.tar.gz, then prepare the control file and debian-binary file, and then roll up a tarball ipk?
Or do i miss something?
-
Isn't it simply a matter of adding all the things to the paths in your build directories, then make a data.tar.gz, then prepare the control file and debian-binary file, and then roll up a tarball ipk?
Or do i miss something?
Hey don't tell me that's how you have been rolling your ipks? There's a script mkipkg which does it for you
There are instructions on www.pdaxrom.org but it seems to be down right now so I'll post it here:
How to create an ipk
To create an ipk the first thing we have to do is to create a directory tree that contains the files that will be installed (and only these files). For instance if we have one exectuable foo that should go in /usr/bin and a file foo.conf in /etc. We want to have the following structure:
ipkg-temp/
|-- etc
| `-- foo.conf
`-- usr
`-- bin
`-- foo
NB: You should use a Linux partition to hold ipkg-temp. If you use an msdos/fat/vfat partition then the permissions in the resulting package will be completely messed up - this has no detrimental effect right now but may cause problems if and when pdaXrom supports multiple users.
1. Installing the application after a compilation
Take care when you do a make install. If you are compiling on your zaurus you might easily fill the / root partition. If you are cross compiling you might install the application on your desktop pc (and possibly break something).
It's a good idea to redirect the output of the installation to a log file just to be sure you can find what files has been placed where:
make install 2>&1 > installation.log.
1.1 DESTDIR
Makefiles created by the classic "./configure" script often take into account the variable DESTDIR. If set "make install" will install the application under the directory pointed by DESTDIR rather than in /. To set it you can for instance type (prefer the full path to a relative one):
make DESTDIR=/home/ubuntu/links-2.1pre20/ipkg-temp/ install
But not all makefiles take DESTDIR into account, to check this I usually do:
grep DESTDIR Makefile
If it returns something, then there is a good chance that DESTDIR is valid.
1.2 Another possible trick
A trick I use on the zaurus is to mount a partition over /usr/local (in the case where I know that my application will go into /usr/local using the --prefix= argument for example):
mkdir -p /mnt/card/ipkg-tmp/usr/local
mount -bind /mnt/card/ipkg-tmp/usr/local /usr/local
make install 2>&1 > installation.log
umount /usr/local
Now my application is now installed in /mnt/card/ipkg-tmp and the content of /usr/local is not modified.
2. Stripping the binaries
Before releasing an ipk it's better to strip the binaries. That is the executables under /bin but also the shared libraries .so. Just run:
arm-linux-strip myexecutable
this will reduce the size of you binaries.
Stripping is an important step as the space saved by this operation can be significant.
Sometimes the Makefile provides an install-strip target, that will strip the binaries for you. You might want to try to use make install-strip instead of the classic install.
3. Removing the documentation
Generally your application comes with its documentation. You might want to remove the man pages, info pages from your ipk. It's up to you to choose to remove the documentation or not.
Try to remove what you think is not important. Not all the zaurus owners have a 4G micro drive.
You can also create 2 separate packages, one with the application, one with the documentation. Leaving the decision to install or not the documentation to your users.
4. Libraries
When you compile a library, in general you can put in your ipk the stripped .so.x.x files and remove the rest. (.h .a .la ....). This is in most cases enough for the applications that uses the library.
However it is a good thing if you take the time to make a second ipk that contains all the files (header files .h, static libraries ..).
Name this second ipk by adding a "-devel" suffix to the package name. This ipk will be useful to someone who wants to compile an application that depends on your library.
5. Create a shortcut in the menu
If you want to add a shortcut in the menu and on the desktop you should add a file foo.desktop (foo being the name of our application). The .desktop file look like this:
[Desktop Entry]
Exec=emacs -fn 8x13
Icon=emacs.png
Terminal=false
Type=Application
Categories=Application;Office;WordProcessor;X-Red-Hat-Base;
StartupNotify=false
Encoding=UTF-8
Name=Gnu Emacs
The 3 most important fields are:
Exec which specify the command that will be executed,
Name which specify the label that will appear next to the icon,
Icon which specify the icon file for the icon. If no path is specify you should put the icon in /usr/share/pixmaps
For our foo package our directory tree will look like this:
ipkg-temp/
|-- etc
| `-- foo.conf
`-- usr
|-- bin
| `-- foo
`-- share
|-- applications
| `-- foo.desktop
`-- pixmaps
`-- foo.png
If you want to add a shortcut for rox, look in /usr/apps/.
6. The control file
Next we need to write a file named control. This file will describe our applications. Each line of this file contains entries of the form:
field : value
You should place this file in a directory CONTROL together with the other files. Like this:
ipkg-temp/
|-- CONTROL
| `-- control
|-- etc
| `-- foo.conf
`-- usr
|-- bin
| `-- foo
`-- share
|-- applications
| `-- foo.desktop
`-- pixmaps
`-- foo.png
A pretty minimal control file will look like this:
Package: lighttpd
Version: 1.4.8
Architecture: armv5tel
Maintainer: pierre.gaston@gmail.com
Description: fast and light http server
6.1 Package
This field is the name of your package, typically the name of your application. It should only contain alphanumeric characters or '-'.
Don't put an underscore in the package name, the underscore is used to separate the different parts of the filename of the ipk. For instance if you want to make a doc package use a name like foo-doc and not foo_doc
6.2 Version
Version of your package. Generally reflects the version of the application. Don't put a _ in it.
6.3 Architecture
Use armvtel for xscale, arm otherwise. Maybe something like armvetil if you compiled for pxa270, though no convention seems to exist at this time...
6.4 Maintainer
Put your e-mail address rather than the one of the creator of the application. Your address is perhaps more interesting because if someone wants to compile a newer version of the application you might be more helpful than the original developer.
6.5 Description
Some words that describe the application. Remember that the description should stay on the line starting with "Description:". It can be a long line but it must be one line. Don't press press Enter while writing it.
6.6 Depends
This field should be a list separated by whitespace of package names. ipkg will check that the packages listed here are installed before installing your application, and automatically install the missing ones.
One way to check the dependencies is to use "ldd" to see the list of shared libraries that are used by your application. You can then use "ipkg search libfile.so" to find the packge that cotains libfile.so.
For instance if I want to find the dependencies of mc I can do:
# ldd /usr/bin/mc
libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0x40020000)
libiconv.so.2 => /usr/lib/libiconv.so.2 (0x40091000)
libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x40172000)
libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40182000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x4019f000)
libnsl.so.1 => /lib/libnsl.so.1 (0x40265000)
libc.so.6 => /lib/libc.so.6 (0x40278000)
libdl.so.2 => /lib/libdl.so.2 (0x40398000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
# ipkg search libICE.so.6
xfree: //usr/X11R6/lib/libICE.so.6.3
xfree: //usr/X11R6/lib/libICE.so.6
# ipkg search libglib-2.0.so.0
glib2: //usr/lib/libglib-2.0.so.0
glib2: //usr/lib/libglib-2.0.so.0.800.1
# ....
and I will add :
Depends: xfree glib2
And so on.
6.6 Other fields
You can add other fields to your control file, for instance a "Source: http://foo.org" (http://foo.org")
7. preinst, postinst, prerm, postrm
You can add are four scripts to your package:
preinst: this script will be executed before the installation, ie before the files are copied over.
postinst: this one will be executed after the installation but before ipkg-link ie the files will be present in the destination directory but not the symbolic links in /
prerm: this one will be executed before the files are removed but after ipkg-link ie the files will be present in the destination directory but the symbolic links in / won't exists anymore
postrm: this one is executed after the files are removed
Place these scripts in the CONTROL directory, together with the control file.
You can use the PKG_ROOT variable in these scripts to get the destination directory where the package is/was/will be installed.
8. Finally: the ipk
8.1 Creating the package
Don't try to make the ipk by hand. Use the mkipkg provided here. The script is also provided in both the cross and native sdk but it is not compatible some recent versions of tar.
mkipkg will uncover the possible errors in your control file or elsewhere. If mkipkg fails double-check your control file.
When you have a tree structure like:
ipkg-temp/
|-- CONTROL
| `-- control
|-- etc
| `-- foo.conf
`-- usr
|-- bin
| `-- foo
`-- share
|-- applications
| `-- foo.desktop
`-- pixmaps
`-- foo.png
just do:
mkipkg ipkg-temp
and the ipk will be created for you.
8.2 The package
An ipk package is tar.gz a file named:
packagename_version_architecture.ipk
it contains three files:
control.tar.gz which contains the control file and the pre post scripts
data.tar.gz which contains the files of the application
debian-binary is a text file with 2.0 inside
-
how about
newipk mypackage
update the control file under mypackage/control/control
place all the files you want under mypackage/data/
makeipk mypackage
-
Thanks guys. Very informative and very helpful.
Meanie... just to be clear, are you saying I put the files in:
mypackage/data/usr/local/bin
mypackage/data/usr/local/lib/scummvm
(otherwise I can't see where it would know where to put them)
Thanks for your patience with me, once I get a lot of these basics behind me I'll be able to contribute more.
-
Thanks guys. Very informative and very helpful.
Meanie... just to be clear, are you saying I put the files in:
mypackage/data/usr/local/bin
mypackage/data/usr/local/lib/scummvm
(otherwise I can't see where it would know where to put them)
Thanks for your patience with me, once I get a lot of these basics behind me I'll be able to contribute more.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=155280\"][{POST_SNAPBACK}][/a][/div]
yup, that's it. just place them there and make sure you dont forget to chmod the files under the bin directory to give them executable rights...
-
roger that. thanks.
-
Use the mkipkg provided here. The script is also provided in both the cross and native sdk but it is not compatible some recent versions of tar.
applies to Tar 1.15 atleast (which comes with beta1) ... tar 1.13 works though: https://www.oesf.org/forums/index.php?showtopic=23649 (https://www.oesf.org/forums/index.php?showtopic=23649)
-
shy to tell you guys that I haven't tried any ipackaging before....
-
hi, ive got a couple of programs which run from the command line, and ive created icon/launchers for them so far by using exec=aterm -e "program binary", is there a more correct or professional way to run these cli type binaries ???
-
Why not just create a .desktop file for each binary executable? Or copy a .desktop file from another application and edit it.
Here is an example for mrxvt.[Desktop Entry]
Name=mrxvt
Comment=mrxvt console
Exec=mrxvt
Terminal=0
Type=Application
Icon=mrxvt-root.png
Categories=Application;Other
StartupNotify=True
SingleInstance=False
As you know the binaries are located here:
/usr/bin
Place this .desktop here:
/usr/share/applications
The icons (*.png files) are located here: (be sure that you actually have a valid *.png file for each of your applications located here)
usr/share/pixmaps
restart X. Your new icon/shortcut should now appear on the start menu.
-
The icons (*.png files) are located here: (be sure that you actually have a valid *.png file for each of your applications located here)
usr/share/pixmaps
restart X. Your new icon/shortcut should now appear on the start menu.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=159208\"][{POST_SNAPBACK}][/a][/div]
What I do in order to tweak a .desktop file and icon until it fits my needs is not restarting X each time I modify the file, but instead starting
mb-applet-menu-launcher
(which is the "X" menu)
Then view the icon and entry in that (second) menu, also mb-applet-menu-launcher may give error output and thus a hint of what is wrong in a .desktop file.
Then I only have to Ctrl-C the menu program, modify the file and restart the menu to see if the modifications had the effect I wanted.
Easier and quicker than restarting X :-)
daniel
-
ok, well i dont have any problem with making an icon per methods in this thread.
but more specifically looking for ways to launch, say vi or pine, as they dont have "windows" and the only way i can launch them is to launch aterm and give is the start up parameter to launch the binary apon startup, thus "housing/displaying" the application.
ie in back in window$ there was an option in a shortcut to "launch in terminal" type thing.
-
ok, well i dont have any problem with making an icon per methods in this thread.
but more specifically looking for ways to launch, say vi or pine, as they dont have "windows" and the only way i can launch them is to launch aterm and give is the start up parameter to launch the binary apon startup, thus "housing/displaying" the application.
ie in back in window$ there was an option in a shortcut to "launch in terminal" type thing.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=159256\"][{POST_SNAPBACK}][/a][/div]
Isn't there a terminal option in the .desktop file that you could set to true?
-
ive tried several times both 1 and True as options for that Terminal Option, but no result...
its ok though i dont want to do it anymore as launching aterm and then the binary in that allows me to set text/font sizes/variables etc.
-
If you want to start an app inside a terminal from a .desktop file, use a terminal app like rxvt or mrxvt with the -e option:
mrxvt -ip 0 -e vi
(the -ip 0 causes mrxvt to open just one tab, not required for rxvt).
daniel