mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Removed the full-stop and repeating package name in SUMMARY. Removed hard line breaks, broke up some very long paragraphs and use bullet lists where possible. All done by browsing through HaikuDepot. There may be (many) more left in the whole haikuports repo... Included 10 extended desriptions done by soyoye14 for GCI 2014 (https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632) Removed/insert whitespace where it seems to be the custom in recipes. Sometimes rearranged elements of a recipe (moving license and copyright up, for example).
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
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
|
|
lib:libiptcdata$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
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
|
|
}
|