wok view obconf/receipt @ rev 10471

tazwikiss: add compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 11:47:30 2011 +0200 (2011-05-25)
parents 9df3bbf503c6
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="obconf"
4 VERSION="2.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Openbox WM configuration interface."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://icculus.org/openbox/"
10 WGET_URL="http://icculus.org/openbox/obconf/$TARBALL"
11 TAGS="openbox"
13 DEPENDS="openbox gtk+ libglade shared-mime-info xorg-libXdamage \
14 startup-notification"
15 BUILD_DEPENDS="xorg-dev gtk+-dev libglade-dev openbox-dev \
16 startup-notification-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure &&
23 sed -i 's/^mkdir_p = .*/mkdir_p = mkdir -p/' po/Makefile &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/obconf $fs/usr/share
33 cp -a stuff/mime $fs/usr/share
34 touch $fs/usr/share/mime/x-openbox-theme.xml
35 touch $fs/usr/share/mime/x-vbscript.xml
36 touch $fs/usr/share/mime/x-ms-win-installer.xml
37 }
39 # Update mime database.
40 post_install()
41 {
42 local root
43 root=$1
44 update-mime-database $root/usr/share/mime || continue
45 }