0
0
Fork 0
haikuports/haiku-apps/simplyvorbis/simplyvorbis-0.1.recipe

57 lines
1.7 KiB
Bash
Raw Permalink Normal View History

2014-12-29 18:09:32 +00:00
SUMMARY="A program to rip CDs into digital music files"
DESCRIPTION="MP3 or Ogg Vorbis. Designed with ease-of-use as being priority one, \
it is simple, effective, and lets you get on to bigger and better things, like \
listening to your to music. SimplyVorbis is not for the audiophile and probably \
not for the hardcore geek; it is for the rest of us, people who don't want to be \
hassled with technical details, who just want to turn CDs into music files to \
listen to while we work at the keyboard or take with us on an iPod and want to have \
all the BeOS goodness of attributes without having to resort to something like \
ArmyKnife (which does have its uses). Pop in a CD, select the songs you want, and \
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"
COPYRIGHT="2007 Darkwyrm"
LICENSE="SimplyVorbis"
2018-08-06 15:16:36 +00:00
REVISION="4"
SOURCE_URI="https://github.com/HaikuArchives/SimplyVorbis/archive/ecd4b2dd31f3ec578f16c9a1c3a95e281958a248.tar.gz"
CHECKSUM_SHA256="4c1ff7b4a78c38ea6b56f258bb4226702afb2aa7c9dfece415d82cbb8799bdcf"
SOURCE_DIR="SimplyVorbis-ecd4b2dd31f3ec578f16c9a1c3a95e281958a248"
2014-12-29 18:09:32 +00:00
ARCHITECTURES="x86_gcc2"
PROVIDES="
2018-08-06 15:16:36 +00:00
simplyvorbis = $portVersion
2014-12-29 18:09:32 +00:00
app:SimplyVorbis = $portVersion
"
REQUIRES="
haiku
lib:libogg
lib:libvorbis
lib:libvorbisenc
"
BUILD_REQUIRES="
haiku_devel
makefile_engine
devel:libogg
devel:libvorbis
devel:libvorbisenc
"
BUILD_PREREQUIRES="
cmd:g++
2018-08-09 09:26:07 +00:00
cmd:make
2014-12-29 18:09:32 +00:00
"
BUILD()
{
2015-01-02 06:58:28 +00:00
make $jobArgs OBJ_DIR=objects
2014-12-29 18:09:32 +00:00
}
INSTALL()
{
2015-01-02 06:58:28 +00:00
mkdir -p $appsDir
cp objects/SimplyVorbis $appsDir
2015-01-02 06:58:28 +00:00
addAppDeskbarSymlink $appsDir/SimplyVorbis
}