wok view libacpi/receipt @ rev 14080

udisks: update deps - busybox mount does not understand the -o uhelper=udisks2 spawned by udisks
author ernia <monghitri@aruba.it>
date Fri Feb 22 17:25:25 2013 +0000 (2013-02-22)
parents
children 6c3718ca17b6
line source
1 # SliTaz package receipt.
3 PACKAGE="libacpi"
4 VERSION="0.2"
5 CATEGORY="misc"
6 SHORT_DESC="General purpose library for ACPI."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://www.ngolde.de/libacpi.html"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://www.ngolde.de/download/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i 's|/local||' config.mk
20 make && make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*so* $fs/usr/lib
28 }