wok view libacpi/receipt @ rev 20157

Up slitaz-boot-scripts (449), tazlito (475): updates for loram
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 25 21:46:51 2017 +0100 (2017-12-25)
parents 6341d02298ae
children ede1d184d5c5
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 LICENSE="MIT"
9 WEB_SITE="http://www.ngolde.de/libacpi.html"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://www.ngolde.de/download/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's|/local||' config.mk
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*so* $fs/usr/lib
29 }