From b8a721d51b1bfa42306fc0cf1ce9bde9b660a480 Mon Sep 17 00:00:00 2001 From: Sergei Reznikov Date: Fri, 2 Jan 2015 09:58:28 +0300 Subject: [PATCH] SimplyVorbis: fix install() --- haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe b/haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe index 8b5fe4b83..2c36255c9 100644 --- a/haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe +++ b/haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe @@ -10,11 +10,11 @@ ArmyKnife (which does have its uses). Pop in a CD, select the songs you want, an hit 'Go'. Period. It can even make playlists for you if you like. Your music isn't \ limited by copy protection (DRM) either, so you can have all the flexibility of Fair Use." HOMEPAGE="https://github.com/HaikuArchives/SimplyVorbis" -SRC_URI="git+https://github.com/HaikuArchives/SimplyVorbis.git#63290af1f2cda8e5e31393780ee96a16132b4dba" +SRC_URI="git+https://github.com/HaikuArchives/SimplyVorbis.git#ecd4b2dd31f3ec578f16c9a1c3a95e281958a248" CHECKSUM_SHA256="" LICENSE="SimplyVorbis" COPYRIGHT="2007 Darkwyrm" -REVISION="1" +REVISION="2" ARCHITECTURES="x86_gcc2" @@ -44,10 +44,13 @@ BUILD_PREREQUIRES=" BUILD() { - make + make $jobArgs OBJ_DIR=objects } INSTALL() { - make install -} \ No newline at end of file + mkdir -p $appsDir + cp objects/SimplyVorbis $appsDir + + addAppDeskbarSymlink $appsDir/SimplyVorbis +}