wok view xplc/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents b7319995b37e
children ad86373a4a8c
line source
1 # SliTaz package receipt.
3 PACKAGE="xplc"
4 VERSION="0.3.13"
5 CATEGORY="network"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="Cross-Platform Lightweight Components"
9 WEB_SITE="http://xplc.sourceforge.net"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/xplc/$TARBALL"
12 TAGS=""
14 DEPENDS="gcc-lib-base"
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
19 compile_rules() {
20 cd $src
21 ./configure --prefix=/usr --mandir=/usr/share/man \
22 --without-libuuid $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/$PACKAGE-$VERSION
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*so* $fs/usr/lib/
34 cp -a $install/usr/lib/$PACKAGE-$VERSION/*so* $fs/usr/lib/$PACKAGE-$VERSION
35 rm -f $fs/usr/bin/uuidgen
36 }