wok-next view startup-notification/receipt @ rev 19741

Many random packages update/upgrade.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 05 16:48:55 2017 +0300 (2017-06-05)
parents 66bf4ef9064b
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="startup-notification"
4 VERSION="0.12"
5 CATEGORY="x-window"
6 SHORT_DESC="Startup notification protocol"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/startup-notification/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.freedesktop.org/software/startup-notification/releases/$TARBALL"
15 BUILD_DEPENDS="xorg-libX11-dev xorg-libICE-dev libxcb-dev xcb-util-dev"
16 SPLIT="startup-notification-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make && make install &&
26 install -v -m644 -D doc/startup-notification.txt \
27 $install/usr/share/doc/startup-notification-$VERSION/startup-notification.txt
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 case $PACKAGE in
34 startup-notification)
35 copy @std
36 DEPENDS="libxcb xcb-util xorg-libX11"
37 ;;
38 *-dev)
39 copy @dev
40 DEPENDS="startup-notification glibc-dev libxcb-dev xcb-util-dev \
41 xorg-libX11-dev xorg-libXau-dev xorg-libXdmcp-dev"
42 ;;
43 esac
44 }