wok-next annotate tazpkg/receipt @ rev 17872
Up: tazpanel , tazpkg
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Fri Mar 27 01:59:39 2015 +0100 (2015-03-27) |
parents | 08c598aa2926 |
children | 9ffd037b3c0b |
rev | line source |
---|---|
pankso@10 | 1 # SliTaz package receipt. |
pankso@10 | 2 |
pankso@10 | 3 PACKAGE="tazpkg" |
al@17857 | 4 VERSION="5.3.5" |
pankso@192 | 5 CATEGORY="base-system" |
pankso@10 | 6 SHORT_DESC="SliTaz packages manager." |
pankso@10 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15021 | 8 LICENSE="GPL3" |
slaxemulator@9506 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@10 | 10 WEB_SITE="http://www.slitaz.org/" |
slaxemulator@10929 | 11 WGET_URL="http://hg.slitaz.org/tazpkg/archive/$VERSION.tar.gz" |
jozee@4973 | 12 TAGS="slitaz package-manager" |
pankso@12778 | 13 HOST_ARCH="i486 arm" |
pankso@10 | 14 |
pascal@14469 | 15 DEPENDS="busybox gettext-base" |
pankso@12879 | 16 BUILD_DEPENDS="gettext" |
pankso@12879 | 17 |
pankso@12879 | 18 # Gettext is part of cross-chroot |
pankso@12879 | 19 case "$ARCH" in |
pankso@12879 | 20 arm) BUILD_DEPENDS="" ;; |
pankso@12879 | 21 esac |
pankso@12879 | 22 |
pankso@10 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@10 | 24 # |
pankso@10 | 25 # Tazpkg is SliTaz packages manager. On an other GNU/Linux install |
pankso@10 | 26 # can be do with : make install from the sources directory. |
pankso@10 | 27 # |
pankso@6776 | 28 |
pankso@6776 | 29 # Rules to configure and make the package. |
pankso@6776 | 30 compile_rules() |
pankso@6776 | 31 { |
pascal@17427 | 32 make && make DESTDIR=$DESTDIR VERSION=$VERSION install |
pankso@6776 | 33 } |
pankso@6776 | 34 |
pankso@10 | 35 genpkg_rules() |
pankso@10 | 36 { |
pankso@10792 | 37 cp -a $install/* $fs |
pankso@722 | 38 chown -R root.root $fs |
al@17261 | 39 |
pankso@3952 | 40 # Default icon for mimetype (freedesktop standard compliant file |
pankso@3952 | 41 # manager will diplay a tazpkg icon for SliTaz packages). |
psychomaniak@17872 | 42 icons="$fs/usr/share/icons/hicolor/32x32/mimetypes" |
psychomaniak@17872 | 43 mkdir -p $icons |
psychomaniak@17872 | 44 ln -s ../apps/tazpkg.png $icons/application-x-tazpkg.png |
pankso@10 | 45 } |
gokhlayeh@8157 | 46 |
gokhlayeh@8157 | 47 post_install() |
gokhlayeh@8157 | 48 { |
pankso@10792 | 49 # Apply a fix to config file /etc/slitaz/slitaz.conf |
al@17261 | 50 [ -f /etc/slitaz/slitaz.conf ] && \ |
al@17261 | 51 sed -i 's/LOCAL_STATE/LOCALSTATE/' /etc/slitaz/slitaz.conf |
al@17261 | 52 |
pankso@10792 | 53 # Make sure new config is present |
pankso@9492 | 54 if ! grep -q ^NOTIFY_GEOM "$root/etc/slitaz/tazpkg.conf"; then |
pankso@9492 | 55 cat >> "$root/etc/slitaz/tazpkg.conf" << "EOT" |
pankso@9492 | 56 # The geometry of the desktop notification |
pankso@9492 | 57 NOTIFY_GEOM="360x80-0+24" |
pankso@9492 | 58 |
pankso@9492 | 59 EOT |
pankso@9492 | 60 fi |
psychomaniak@17872 | 61 |
psychomaniak@17872 | 62 [ ! -f "$1/$PKGS_DB/installed.info" -a -f "$1/run/tazpanel.pid" ] && \ |
psychomaniak@17872 | 63 chroot "$1/" echo $(tazpkg -l) | grep installed.info |
gokhlayeh@9379 | 64 } |