mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
SUMMARY="An image viewer/organiser designed for BeOS-compatible operating systems."
|
|
DESCRIPTION="Album is a file browsing and tagging utility for BeOS and compatibles. 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 (Be File System) volumes, although that
|
|
further limits whatever the usefulness since much of the functionality has to do with file
|
|
attributes."
|
|
HOMEPAGE="http://users.volja.net/mkovac1/proj/album/"
|
|
SRC_URI="git://github.com/HaikuArchives/Album"
|
|
#CHECKSUM_MD5=" "
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2006-2009 by Matjaž Kovač"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
PROVIDES="
|
|
Album = $portVersion
|
|
app:Album = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
|
|
BUILD_REQUIRES=" "
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:mkdepend
|
|
"
|
|
|
|
PATCHES="album-0.9.2.patch"
|
|
USER_SETTINGS_FILES="
|
|
settings/Album_settings
|
|
"
|
|
|
|
SOURCE_DIR="$portVersionedName/src"
|
|
|
|
BUILD()
|
|
{
|
|
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
albumDir=$appsDir/Album
|
|
mkdir -p $albumDir
|
|
|
|
cp -a objects.x86-gcc2-debug/Album $albumDir
|
|
|
|
addAppDeskbarSymlink $albumDir/Album
|
|
}
|