wok annotate orpheus/receipt @ rev 21101

updated lensfun and lensfun-dev (0.2.5 -> 0.3.2)
author Hans-G?nter Theisgen
date Mon Mar 18 17:49:35 2019 +0100 (2019-03-18)
parents 064dbb4a9828
children 66530154b12f
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@17670 22 export LDFLAGS="$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