wok view matchbox-desktop-2/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 053c9ea7763c
children 17e313b5b9c1
line source
1 # SliTaz package receipt.
3 PACKAGE="matchbox-desktop-2"
4 VERSION="2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox desktop v2."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="matchbox-desktop"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://matchbox-project.org/"
12 WGET_URL="${WEB_SITE}sources/$SOURCE/2.0/$TARBALL"
14 DEPENDS="gtk+ dbus dbus-glib util-linux-uuid"
15 BUILD_DEPENDS="gtk+-dev dbus-dev dbus-glib-dev util-linux-uuid-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
21 export LDFLAGS="-Wl,--copy-dt-needed-entries"
23 cd $src
24 ./configure \
25 --disable-startup-notification \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }