mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
53 lines
820 B
Plaintext
53 lines
820 B
Plaintext
SUMMARY="Library for handling cover art for audio files"
|
|
DESCRIPTION="Development library geared towards developers who wish to add cover art capabilites to their applications."
|
|
HOMEPAGE="http://musicbrainz.org/doc/libcoverart"
|
|
SRC_URI="https://github.com/downloads/metabrainz/libcoverart/libcoverart-1.0.0.tar.gz"
|
|
CHECKSUM_MD5="6380056bb4bc1a69790e706b4d506f50"
|
|
LICENSE="GNU LGPL v2"
|
|
COPYRIGHT="2012 Andrew Hawkins"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
lib:libcoverart
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
lib:libjansson
|
|
lib:libneon
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libjansson
|
|
devel:libneon
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:cmake
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
SOURCE_DIR="libcoverart-{PROJECT_VERSION}"
|
|
|
|
BUILD()
|
|
{
|
|
cmake .
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
cd tests
|
|
./test
|
|
}
|