wok-current view libid3tag/receipt @ rev 5191
Fix: openssl, libssl, libcrypto back to 0.9.8l.
| author | Eric Joseph-Alexandre <erjo@slitaz.org> | 
|---|---|
| date | Sat Mar 27 22:37:46 2010 +0100 (2010-03-27) | 
| parents | |
| children | 0f8dcbf8807b | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libid3tag"
     4 VERSION="0.15.1b"
     5 CATEGORY="multimedia"
     6 SHORT_DESC="ID3 tag manipulation library."
     7 MAINTAINER="paul@slitaz.org"
     8 DEPENDS="zlib"
     9 BUILD_DEPENDS="zlib-dev"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.underbit.com/products/mad/"
    12 WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure --prefix=/usr $CONFIGURE_ARGS
    19 	make
    20 	make DESTDIR=$PWD/_pkg install
    21 }
    23 # Rules to gen a SliTaz package suitable for Tazpkg.
    24 genpkg_rules()
    25 {
    26 	mkdir -p $fs/usr/lib
    27 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    28 	strip --strip-unneeded $fs/usr/lib/*
    29 }