wok view libacpi/receipt @ rev 20823

updated dfc (3.0.5 -> 3.1.1)
author Hans-G?nter Theisgen
date Tue Feb 19 15:04:01 2019 +0100 (2019-02-19)
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 }