wok-next view lzop/receipt @ rev 15589
Add some license
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Dec 02 17:47:06 2013 +0000 (2013-12-02) | 
| parents | c97aea7cf136 | 
| children | f498b54a20cd | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="lzop"
     4 VERSION="1.03"
     5 CATEGORY="base-system"
     6 SHORT_DESC="Compressor with a high compression speed."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="http://www.lzop.org/"
    11 WGET_URL="${WEB_SITE}download/$TARBALL"
    13 DEPENDS="lzo"
    14 BUILD_DEPENDS="lzo-dev"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure --prefix=/usr --infodir=/usr/share/info \
    21 	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    22 	make
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/bin
    29 	cp $src/src/lzop $fs/usr/bin
    30 }