wok view libmspack/receipt @ rev 22939

updated iasl (20190215 -> 20200214)
author Hans-G?nter Theisgen
date Thu Feb 27 15:05:28 2020 +0100 (2020-02-27)
parents a78610b2eb47
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libmspack"
4 VERSION="0.10.1"
5 CATEGORY="development"
6 SHORT_DESC="A library which allows extracting from MS CAB files."
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="LGPL"
9 WEB_SITE="https://www.cabextract.org.uk/libmspack/"
11 TARBALL="$PACKAGE-${VERSION}alpha.tar.gz"
12 WGET_URL="https://www.cabextract.org.uk/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }