mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
54 lines
1.2 KiB
Plaintext
54 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
|
|
}
|