Files
haikuports/haiku-apps/album/album-0.9.4.recipe
2017-12-26 14:25:54 -05:00

57 lines
1.3 KiB
Bash

SUMMARY="An image viewer/organiser designed for BeOS-compatible systems"
DESCRIPTION="Album is a file browsing and tagging utility for BeOS/Haiku. \
The idea is to have a work pad for pictures from different locations so they \
may be viewed and tagged. \
The program is not limited to pictures and BFS (Be File System) volumes, \
although that makes most sense since some of the functionality has to do with \
file attributes."
# Original homepage http://users.volja.net/mkovac1/proj/album/
HOMEPAGE="https://github.com/HaikuArchives/Album/"
COPYRIGHT="2006-2015 by Matjaž Kovač"
LICENSE="MIT"
REVISION="5"
COMMIT=19d7f4d658f09800a05f4d3d9c7260d87ece47ef
SOURCE_URI="https://github.com/HaikuArchives/Album/archive/$COMMIT.tar.gz"
CHECKSUM_SHA256="b0f256a72cf248637ce0cb2952c144d58dd4cff365bd8635ac962ab2d5c8398d"
SOURCE_DIR="Album-$COMMIT"
ARCHITECTURES="x86_gcc2 ?x86 x86_64"
PROVIDES="
album = $portVersion
app:Album = $portVersion
"
REQUIRES="
haiku
lib:libintl
lib:libiptcdata
"
BUILD_REQUIRES="
haiku_devel
devel:libintl
devel:libiptcdata
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
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
}