wok-stable annotate tazpkg/receipt @ rev 6776

Up: tazpkg (4.0) New functions, improvmend and fully gettextized
author Christophe Lincoln <pankso@slitaz.org>
date Mon Oct 18 21:46:16 2010 +0200 (2010-10-18)
parents 3614feba5792
children a84418c0b3ff
rev   line source
pankso@10 1 # SliTaz package receipt.
pankso@10 2
pankso@10 3 PACKAGE="tazpkg"
pankso@6776 4 VERSION="4.0"
pankso@192 5 CATEGORY="base-system"
pankso@10 6 SHORT_DESC="SliTaz packages manager."
pankso@10 7 MAINTAINER="pankso@slitaz.org"
pankso@722 8 DEPENDS="busybox"
pankso@10 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@10 10 WEB_SITE="http://www.slitaz.org/"
pankso@1071 11 WGET_URL="http://mirror.slitaz.org/sources/tazpkg/$TARBALL"
jozee@4973 12 TAGS="slitaz package-manager"
pankso@10 13
pankso@10 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@10 15 #
pankso@10 16 # Tazpkg is SliTaz packages manager. On an other GNU/Linux install
pankso@10 17 # can be do with : make install from the sources directory.
pankso@10 18 #
pankso@6776 19
pankso@6776 20 # Rules to configure and make the package.
pankso@6776 21 compile_rules()
pankso@6776 22 {
pankso@6776 23 cd $src
pankso@6776 24 make DESTDIR=$PWD/_pkg install
pankso@6776 25 }
pankso@6776 26
pankso@10 27 genpkg_rules()
pankso@10 28 {
pankso@6776 29 cp -a $_pkg/usr $fs
pankso@6776 30 cp -a $_pkg/etc $fs
pankso@759 31 cp -a $src/pixmaps $fs/usr/share
pankso@3952 32 cp -a $src/mime $fs/usr/share
pankso@722 33 chown -R root.root $fs
pankso@3952 34 # Default icon for mimetype (freedesktop standard compliant file
pankso@3952 35 # manager will diplay a tazpkg icon for SliTaz packages).
pankso@3952 36 mkdir -p $fs/usr/share/icons/hicolor/32x32/mimetypes
pankso@3952 37 cd $fs/usr/share/icons/hicolor/32x32/mimetypes
pankso@3952 38 ln -s /usr/share/pixmaps/tazpkg.png package-x-tazpkg.png
pankso@3952 39 ln -s /usr/share/pixmaps/tazpkg.png gnome-mime-application-x-tazpkg.png
pankso@10 40 }