Merged in humdinger/haikuports (pull request #128)

Fixed APlayer recipe
This commit is contained in:
Scott McCreary
2014-01-05 11:26:12 -08:00

View File

@@ -1,11 +1,8 @@
SUMMARY="A module player that can play a lot of music file formats" SUMMARY="A player for Amiga modules and other formats"
DESCRIPTION=" DESCRIPTION="APlayer is a module player and can play a lot of different music file formats, from Amiga and elsewhere."
APlayer is a module player and can play a lot of different music file formats, \
from Amiga and elsewhere.
"
HOMEPAGE="http://pulkomandy.tk/projects/APlayer" HOMEPAGE="http://pulkomandy.tk/projects/APlayer"
SRC_URI="svn://pulkomandy.tk/APlayer/trunk" SRC_URI="svn://pulkomandy.tk/APlayer/trunk"
REVISION="1" REVISION="2"
LICENSE="Artistic" LICENSE="Artistic"
COPYRIGHT=" COPYRIGHT="
1994-2002 Polycode 1994-2002 Polycode
@@ -48,13 +45,14 @@ BUILD()
INSTALL() INSTALL()
{ {
mkdir -p $appsDir aplayerDir=$appsDir/APlayer
mkdir -p $libDir mkdir -p $aplayerDir $aplayerDir/add-ons $aplayerDir/Documentation $aplayerDir/lib
mkdir -p $addOnsDir
cp APlayer/bin/BeOS_/APlayer $appsDir/APlayer cp APlayer/bin/BeOS_/APlayer $aplayerDir
cp APlayer/bin/BeOS_/lib/APlayerKit.so $libDir cp -r Documentation/* $aplayerDir/Documentation
cp -r APlayer/bin/BeOS_/add-ons/* $addOnsDir cp -r APlayer/bin/BeOS_/add-ons/* $aplayerDir/add-ons
cp PolyKit/bin/BeOS/PolyKit.so $libDir cp APlayer/bin/BeOS_/lib/APlayerKit.so $aplayerDir/lib
addAppDeskbarSymlink $appsDir/APlayer cp PolyKit/bin/BeOS/PolyKit.so $aplayerDir/lib
addAppDeskbarSymlink $aplayerDir/APlayer
} }