wok-next annotate orpheus/receipt @ rev 17154
Add ncurses-examples
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Thu Sep 11 19:34:50 2014 +0100 (2014-09-11) |
parents | 1ae5963f23df |
children | 17e313b5b9c1 |
rev | line source |
---|---|
pascal@813 | 1 # SliTaz package receipt. |
pascal@813 | 2 |
pascal@813 | 3 PACKAGE="orpheus" |
pascal@813 | 4 VERSION="1.6" |
pascal@813 | 5 CATEGORY="multimedia" |
pascal@813 | 6 SHORT_DESC="Ncurses based audio player" |
pascal@813 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15085 | 8 LICENSE="GPL2" |
pascal@813 | 9 SUGGESTED="mpg123" |
pascal@813 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@813 | 11 WEB_SITE="http://thekonst.net/en/orpheus" |
pascal@813 | 12 WGET_URL="http://thekonst.net/download/$TARBALL" |
jozee@4970 | 13 TAGS="audio sound music player" |
pascal@813 | 14 |
pascal@15085 | 15 DEPENDS="ncurses libvorbis libogg libxml2 zlib" |
pascal@15085 | 16 BUILD_DEPENDS="autoconf automake libvorbis-dev libogg-dev ncurses-dev" |
pascal@15085 | 17 |
pascal@813 | 18 # Rules to configure and make the package. |
pascal@813 | 19 compile_rules() |
pascal@813 | 20 { |
pascal@813 | 21 cd $src |
pascal@15110 | 22 export LDFLAGS="-Wl,--copy-dt-needed-entries -logg" |
gokhlayeh@9187 | 23 unset CFLAGS CXXFLAGS |
pascal@15170 | 24 ./configure 2>&1 | grep -v /config.rpath && |
pascal@2459 | 25 make && |
gokhlayeh@9187 | 26 make DESTDIR=$DESTDIR install |
pascal@813 | 27 } |
pascal@813 | 28 |
pascal@813 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@813 | 30 genpkg_rules() |
pascal@813 | 31 { |
pascal@813 | 32 mkdir -p $fs/usr |
pascal@15085 | 33 cp -a $install/usr/bin $fs/usr |
pascal@813 | 34 } |
pascal@813 | 35 |