wok annotate mscore/receipt @ rev 15110

Add some LDFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 18:02:00 2013 +0000 (2013-08-14)
parents 68ec33732967
children bb009a6ef036
rev   line source
allan316@3199 1 # SliTaz package receipt.
allan316@3199 2
allan316@3199 3 PACKAGE="mscore"
monghitri@13992 4 VERSION="1.2"
allan316@3199 5 CATEGORY="multimedia"
allan316@3199 6 SHORT_DESC="a WYSIWYG music notation program"
allan316@3199 7 MAINTAINER="allan316@gmail.com"
slaxemulator@9183 8 DEPENDS="libQtCore libQtGui libQtDesigner libQtScriptTools libQtNetwork libQtSvg \
slaxemulator@9183 9 libQtXml portaudio libsndfile alsa-lib libssl libcrypto"
pascal@10516 10 BUILD_DEPENDS="cmake doxygen qmake Qt4-dev portaudio-dev alsa-lib-dev libsndfile-dev"
slaxemulator@9183 11 SOURCE="MuseScore"
monghitri@13992 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
allan316@3199 13 WEB_SITE="http://musescore.org"
slaxemulator@9183 14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
allan316@3199 15
allan316@3199 16 # Rules to configure and make the package.
allan316@3199 17 compile_rules()
allan316@3199 18 {
allan316@3199 19 cd $src
pascal@15110 20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lpthread"
slaxemulator@9183 21 export QT_PLUGINS_DIR=/usr/lib/qt/plugins
allan316@3199 22 sed -i "s/usr\/local/usr/" Makefile
slaxemulator@9183 23 [ -d build ] && make clean
slaxemulator@9183 24 make -j1 PREFIX=/usr release && make -j1 install
allan316@3199 25 }
allan316@3199 26
allan316@3199 27 # Rules to gen a SliTaz package suitable for Tazpkg.
allan316@3199 28 genpkg_rules()
allan316@3199 29 {
allan316@3199 30 mkdir -p $fs/usr
pascal@15110 31 cp -a $install/usr/bin $fs/usr
pascal@15110 32 cp -a $install/usr/lib $fs/usr
pascal@15110 33 cp -a $install/usr/share $fs/usr
allan316@3199 34 }