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

Nasty typo broke the cooker
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Oct 17 03:59:24 2018 +0300 (2018-10-17)
parents 0e7893ac206d
children d5aab818505e
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/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.freedesktop.org/software/startup-notification/releases/$TARBALL"
14 BUILD_DEPENDS="xorg-libX11-dev xorg-libICE-dev xorg-libxcb-dev \
15 xorg-xcb-util-dev"
16 SPLIT="startup-notification-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install || return 1
26 cook_pick_docs doc/startup-notification.txt
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 startup-notification)
32 copy @std
33 DEPENDS="xorg-libX11 xorg-libxcb xorg-xcb-util"
34 ;;
35 *-dev)
36 copy @dev
37 ;;
38 esac
39 }