wok view receipt @ rev 2540

ruby: typo in file name
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 22 20:18:34 2009 +0100 (2009-03-22)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="plymouth"
4 VERSION="0.6.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Graphical boot tools and library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
10 WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL"
11 DEPENDS="libpng"
12 BUILD_DEPENDS="libpng libpng-dev"
14 # Rules to configure and make the package.
15 # --disable-gui-build dont wok properly only toolbox is not build.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libexecdir=/usr/lib \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install &&
28 rm -rf _pkg/usr/share/applications
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/lib $fs/usr/lib/plymouth $fs/usr/share
35 cp -a $_pkg/bin $fs
36 cp -a $_pkg/sbin $fs
37 cp -a $_pkg/usr/sbin $fs/usr
38 cp -a $_pkg/lib/*.so* $fs/lib
39 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
40 cp -a $_pkg/usr/lib/plymouth/*.so* $fs/usr/lib/plymouth
41 cp -a $_pkg/usr/share/plymouth $fs/usr/share
42 }