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

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents 9278a60d6895
children 757d032c55c7
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 fix ld
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make && 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 }