SliTaz GNU/Linux official and community documentation wiki.
.png
Translations of this page:

This is an old revision of the document!


Before starting on making slitaz packages, we'll begin with a quick overview of how a package installs programs:

When you click on a package to install (in tazweb), you tell the system to automatically download the package to /var/lib/tazpkg/5.0/packages/. It then automatically un-cpio's itself to ~/fs/ (or /home/tux/fs/ when using the absolute path).

Then, it automatically puts all of the files you included in /fs/ into the correct place on the hard disk, overwriting the old files bearing the same name, … It knows where to place them as you use the exact same path of the files as the path the files are installed to on your harddisk (so if for instance, you want the package to copy a file called foo.bar to /usr/share, put foo.bar into /fs/usr/share/ in the package).

After that, it executes the genpkg rules, … (assuming you packed it with tazwok; if packed with tazpkg it won't call these rules !)

So, with this, we're all ready now to make a tazpackage ourselves:

# Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() {

text

}

post_remove() {

text

}

find . -type f -print > ../files.list 
find . -type l -print >> ../files.list
cd ..; sed -i s/'^.'/''/ files.list 

Alternatively, you can also make the package by using the tazpkg pack command; to see what that does exactly, see http://hg.slitaz.org/tazpkg/file/3af642cd5e69/modules/pack . In general it will make the md5 checksum and the filelist, and update the filesizes declared in the receipt. If you have already made the description and receipt it will also make the finished tazpackage in /home/tux (make sure you also pre-made the fs folder with the files therein for it to make a working tazpackage). Note that the wok too can be of use here (see http://doc.slitaz.org/en:oldcookbook:wok).

Once you have made a package, you can put it on a personal ftp site/webspace, or you can upload it to the slitaz package database using mercurial. See http://doc.slitaz.org/en:oldcookbook:wok on how to do this.

Also note you may also want to read:
http://hg.slitaz.org/tazpkg/raw-file/tip/doc/tazpkg.en.html
http://hg.slitaz.org/cookutils/raw-file/tip/doc/cookutils.en.html

 
en/guides/makingtazpackages.1452942796.txt.gz · Last modified: 2016/01/16 12:13 by brianperry