wok annotate tazpkg/receipt @ rev 11044
Up: usbutils to 004.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Oct 16 08:02:37 2011 +0000 (2011-10-16) |
parents | 54ff302c0222 |
children | ba5c7e9ca6cb |
rev | line source |
---|---|
pankso@10 | 1 # SliTaz package receipt. |
pankso@10 | 2 |
pankso@10 | 3 PACKAGE="tazpkg" |
slaxemulator@10929 | 4 VERSION="4.7.1" |
pankso@192 | 5 CATEGORY="base-system" |
pankso@10 | 6 SHORT_DESC="SliTaz packages manager." |
pankso@10 | 7 MAINTAINER="pankso@slitaz.org" |
gokhlayeh@8335 | 8 DEPENDS="busybox gettext-base libtaz" |
slaxemulator@7518 | 9 BUILD_DEPENDS="gettext" |
slaxemulator@9506 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@10 | 11 WEB_SITE="http://www.slitaz.org/" |
slaxemulator@10929 | 12 WGET_URL="http://hg.slitaz.org/tazpkg/archive/$VERSION.tar.gz" |
jozee@4973 | 13 TAGS="slitaz package-manager" |
pankso@10 | 14 |
pankso@10 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@10 | 16 # |
pankso@10 | 17 # Tazpkg is SliTaz packages manager. On an other GNU/Linux install |
pankso@10 | 18 # can be do with : make install from the sources directory. |
pankso@10 | 19 # |
pankso@6776 | 20 |
pankso@6776 | 21 # Rules to configure and make the package. |
pankso@6776 | 22 compile_rules() |
pankso@6776 | 23 { |
pankso@6776 | 24 cd $src |
slaxemulator@10929 | 25 make && make DESTDIR=$DESTDIR install |
pankso@6776 | 26 } |
pankso@6776 | 27 |
pankso@10 | 28 genpkg_rules() |
pankso@10 | 29 { |
pankso@10792 | 30 cp -a $install/* $fs |
pankso@722 | 31 chown -R root.root $fs |
pankso@3952 | 32 # Default icon for mimetype (freedesktop standard compliant file |
pankso@3952 | 33 # manager will diplay a tazpkg icon for SliTaz packages). |
pankso@3952 | 34 mkdir -p $fs/usr/share/icons/hicolor/32x32/mimetypes |
pankso@3952 | 35 cd $fs/usr/share/icons/hicolor/32x32/mimetypes |
pankso@3952 | 36 ln -s /usr/share/pixmaps/tazpkg.png package-x-tazpkg.png |
pankso@3952 | 37 ln -s /usr/share/pixmaps/tazpkg.png gnome-mime-application-x-tazpkg.png |
pankso@10 | 38 } |
gokhlayeh@8157 | 39 |
gokhlayeh@8157 | 40 post_install() |
gokhlayeh@8157 | 41 { |
pankso@10792 | 42 # Apply a fix to config file /etc/slitaz/slitaz.conf |
gokhlayeh@8157 | 43 [ -f /etc/slitaz/slitaz.conf ] && sed 's/LOCAL_STATE/LOCALSTATE/'\ |
pankso@9492 | 44 -i /etc/slitaz/slitaz.conf |
pankso@10792 | 45 # Make sure new config is present |
pankso@9492 | 46 if ! grep -q ^NOTIFY_GEOM "$root/etc/slitaz/tazpkg.conf"; then |
pankso@9492 | 47 cat >> "$root/etc/slitaz/tazpkg.conf" << "EOT" |
pankso@9492 | 48 # The geometry of the desktop notification |
pankso@9492 | 49 NOTIFY_GEOM="360x80-0+24" |
pankso@9492 | 50 |
pankso@9492 | 51 EOT |
pankso@9492 | 52 fi |
gokhlayeh@9379 | 53 } |