Album: update recipe.

This commit is contained in:
Augustin Cavalier
2014-07-21 13:32:26 -04:00
parent 592de00abb
commit a148c10819
2 changed files with 10 additions and 58 deletions

View File

@@ -0,0 +1,53 @@
SUMMARY="An image viewer/organiser designed for BeOS-compatible systems."
DESCRIPTION="Album is a file browsing and tagging utility for Haiku. It \
started out with a goal of the ultimate image organiser (code named \
Aberration), but ended up as something much more modest and BeOS-specific. The \
idea is to have a work pad for pictures from different locations where they \
can be previewed and tagged in one place. The program is not limited to \
picture files and BFS volumes, although this further limits usefulness \
since much of the functionality has to do with file attributes."
HOMEPAGE="http://users.volja.net/mkovac1/proj/album/"
SRC_URI="git+https://github.com/HaikuArchives/Album#cbabd25282"
LICENSE="MIT"
COPYRIGHT="2006-2009 by Matjaž Kovač"
REVISION="1"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
Album = $portVersion
app:Album = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
lib:libiptcdata$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
devel:libiptcdata$secondaryArchSuffix
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
cmd:mkdepend
"
USER_SETTINGS_FILES="
settings/Album_settings
"
BUILD()
{
cd src
make OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a src/objects/Album $appsDir
addAppDeskbarSymlink $appsDir/Album
}