wok view cairo-dock-plugins/receipt @ rev 13225

fail2ban: add fail2ban filter
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 13 19:15:01 2012 +0200 (2012-08-13)
parents 6b85ad9b0e09
children 6b09507225ec
line source
1 # SliTaz package receipt.
3 PACKAGE="cairo-dock-plugins"
4 VERSION="2.4.0~2"
5 CATEGORY="x-window"
6 SHORT_DESC="Set of plugins for Cairo-Dock."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="dbus-glib cairo-dock"
9 BUILD_DEPENDS="wget dbus-glib-dev cairo-dock-dev cmake alsa-lib \
10 gtk+-dev cairo-dev librsvg-dev dbus-dev libxml2-dev gtkglext-dev mesa-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.glx-dock.org/"
13 WGET_URL="https://launchpad.net/cairo-dock-plug-ins/${VERSION:0:3}/${VERSION:0:5}/+download/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 mkdir -p build && cd build
20 cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $_pkg/usr/lib $fs/usr
30 cp -a $_pkg/usr/share/cairo-dock $fs/usr/share
31 }