mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
43 lines
906 B
Plaintext
43 lines
906 B
Plaintext
SUMMARY="The all-in-one metadata editor for audio files."
|
|
DESCRIPTION="ArmyKnife is an application that lets you edit the metadata of audio files."
|
|
HOMEPAGE="http://dev.osdrawer.net/projects/armyknife"
|
|
SRC_URI="git://github.com/HaikuArchives/ArmyKnife.git"
|
|
COPYRIGHT="2000-2001 Jason Burgess"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
armyknife = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix} >= $haikuVersion
|
|
taglib${secondaryArchSuffix}
|
|
"
|
|
BUILD_REQUIRES="
|
|
taglib${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:gcc${secondaryArchSuffix}
|
|
cmd:ld${secondaryArchSuffix}
|
|
cmd:make
|
|
cmd:unzip
|
|
"
|
|
SOURCE_DIR="$portVersionedName"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make zipfile
|
|
mkdir -p ${appsDir}
|
|
unzip release/ArmyKnife-*.zip -d ${appsDir}
|
|
|
|
addAppDeskbarSymlink ${appsDir}/ArmyKnife/ArmyKnife
|
|
}
|
|
|