Fixed recipe.

The recipe put the libs and add-ons in the wrong folder.
Added the documentation.
Improved the SUMMARY.
This commit is contained in:
Humdinger
2014-01-05 19:37:43 +01:00
parent 067c36ac88
commit b5a1683355

View File

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