wok view libmspack/receipt @ rev 18949

mdocml: add LDFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 06 21:11:00 2016 +0100 (2016-03-06)
parents
children a78610b2eb47
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="http://www.cabextract.org.uk/libmspack/"
11 WGET_URL="http://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 }