wok view tazpkg/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents a890cf5553ee
children 924febe49050
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpkg"
4 VERSION="944"
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 sed -i 's|\. receipt|. ./receipt|' */*
34 make && make DESTDIR=$DESTDIR VERSION=$VERSION install
35 }
37 genpkg_rules()
38 {
39 cp -a $install/* $fs
40 chown -R root.root $fs
42 # Default icon for mimetype (freedesktop standard compliant file
43 # manager will diplay a tazpkg icon for SliTaz packages).
44 icons="$fs/usr/share/icons/hicolor/32x32/mimetypes"
45 mkdir -p $icons
46 ln -s ../apps/tazpkg.png $icons/application-x-tazpkg.png
47 }
49 post_install()
50 {
51 # Apply a fix to config file /etc/slitaz/slitaz.conf
52 [ -f $1/etc/slitaz/slitaz.conf ] && \
53 sed -i 's/LOCAL_STATE/LOCALSTATE/' $1/etc/slitaz/slitaz.conf
55 # Make sure new config is present
56 if ! grep -q ^NOTIFY_GEOM "$1/etc/slitaz/tazpkg.conf"; then
57 cat >> "$1/etc/slitaz/tazpkg.conf" << "EOT"
58 # The geometry of the desktop notification
59 NOTIFY_GEOM="360x80-0+24"
61 EOT
62 fi
63 :
64 }