wok view tazpkg/receipt @ rev 19488

Update SliTaz projects: slitaz-base-files (312), slitaz-configs (295), slitaz-doc (158), slitaz-tools (1004), tazinst (83), tazlito (439), tazpanel (606), tazpkg (927), tazusb (192), tazweb (172).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 12 13:09:26 2016 +0200 (2016-11-12)
parents dd299a20bd7b
children 429a73e5062c
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpkg"
4 VERSION="927"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz packages manager"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.slitaz.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://hg.slitaz.org/tazpkg/archive/$VERSION.tar.gz"
12 TAGS="slitaz package-manager"
13 HOST_ARCH="i486 arm"
15 DEPENDS="busybox gettext-base"
16 SUGGESTED="tazpanel"
17 BUILD_DEPENDS="gettext tidy-html5 libnotify-dev"
19 # Gettext is part of cross-chroot
20 case "$ARCH" in
21 arm) BUILD_DEPENDS="" ;;
22 esac
24 # Rules to gen a SliTaz package suitable for TazPkg.
25 #
26 # TazPkg is SliTaz packages manager. On an other GNU/Linux install
27 # can be do with `make install` from the sources directory.
28 #
30 # Rules to configure and make the package.
31 compile_rules()
32 {
33 make && make DESTDIR=$DESTDIR VERSION=$VERSION install
34 }
36 genpkg_rules()
37 {
38 cp -a $install/* $fs
39 chown -R root.root $fs
41 # Default icon for mimetype (freedesktop standard compliant file
42 # manager will diplay a tazpkg icon for SliTaz packages).
43 icons="$fs/usr/share/icons/hicolor/32x32/mimetypes"
44 mkdir -p $icons
45 ln -s ../apps/tazpkg.png $icons/application-x-tazpkg.png
46 }
48 post_install()
49 {
50 # Apply a fix to config file /etc/slitaz/slitaz.conf
51 [ -f /etc/slitaz/slitaz.conf ] && \
52 sed -i 's/LOCAL_STATE/LOCALSTATE/' /etc/slitaz/slitaz.conf
54 # Make sure new config is present
55 if ! grep -q ^NOTIFY_GEOM "$root/etc/slitaz/tazpkg.conf"; then
56 cat >> "$root/etc/slitaz/tazpkg.conf" << "EOT"
57 # The geometry of the desktop notification
58 NOTIFY_GEOM="360x80-0+24"
60 EOT
61 fi
62 :
63 }