wok annotate mpg123/receipt @ rev 14996
Add LGPL2.1 licenses
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 10 11:00:21 2013 +0000 (2013-08-10) |
parents | d7c8fa24dae5 |
children | 61bec0518c8c |
rev | line source |
---|---|
pankso@32 | 1 # SliTaz package receipt. |
pankso@32 | 2 |
pankso@32 | 3 PACKAGE="mpg123" |
slaxemulator@13264 | 4 VERSION="1.14.4" |
pankso@177 | 5 CATEGORY="multimedia" |
paul@4627 | 6 SHORT_DESC="Command line audio player and streamer" |
pankso@32 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14996 | 8 LICENSE="LGPL2.1" |
pankso@32 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@32 | 10 WEB_SITE="http://www.mpg123.de/" |
pankso@32 | 11 WGET_URL="http://www.mpg123.de/download/$TARBALL" |
pankso@32 | 12 |
pascal@14996 | 13 DEPENDS="alsa-lib libltdl esound openal portaudio libsdl" |
pascal@14996 | 14 BUILD_DEPENDS="alsa-lib-dev libtool" |
pascal@14996 | 15 |
pankso@32 | 16 # Rules to configure and make the package. |
pankso@32 | 17 compile_rules() |
pankso@32 | 18 { |
pankso@32 | 19 cd $src |
pankso@191 | 20 ./configure \ |
pankso@191 | 21 --prefix=/usr \ |
pankso@191 | 22 --mandir=/usr/share/man \ |
paul@4633 | 23 --with-default-audio=alsa \ |
pascal@2464 | 24 $CONFIGURE_ARGS && |
pascal@2464 | 25 make && |
slaxemulator@10195 | 26 make install |
pankso@32 | 27 } |
pankso@32 | 28 |
pankso@32 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@32 | 30 genpkg_rules() |
pankso@32 | 31 { |
paul@4627 | 32 # mpg123 needs the plugins libtool library file (.la) to work. |
pankso@3349 | 33 mkdir -p $fs/usr/lib |
slaxemulator@13264 | 34 cp -a $install/usr/lib/*.so* $fs/usr/lib |
slaxemulator@13264 | 35 cp -a $install/usr/lib/mpg123 $fs/usr/lib |
slaxemulator@13264 | 36 cp -a $install/usr/bin $fs/usr |
pankso@32 | 37 } |