wok view libmspack/receipt @ rev 20945

updated fzy (0.9 -> 1.0)
author Hans-G?nter Theisgen
date Sun Mar 03 14:31:57 2019 +0100 (2019-03-03)
parents 67013650f576
children 09922ce0d6ae
line source
1 # SliTaz package receipt.
3 PACKAGE="libmspack"
4 VERSION="0.5alpha"
5 CATEGORY="development"
6 SHORT_DESC="A library which allows extracting from MS CAB files"
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.cabextract.org.uk/libmspack/"
11 WGET_URL="https://www.cabextract.org.uk/libmspack/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
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 }