0
0
Fork 0
haikuports/haiku-apps/album/album-0.9.4.recipe

57 lines
1.3 KiB
Bash
Raw Permalink Normal View History

SUMMARY="An image viewer/organiser designed for BeOS-compatible systems"
2015-12-26 10:44:26 +00:00
DESCRIPTION="Album is a file browsing and tagging utility for BeOS/Haiku. \
2015-05-26 15:18:49 +00:00
The idea is to have a work pad for pictures from different locations so they \
2016-01-07 18:49:17 +00:00
may be viewed and tagged. \
2015-05-26 15:18:49 +00:00
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."
2017-12-26 19:25:54 +00:00
# Original homepage http://users.volja.net/mkovac1/proj/album/
HOMEPAGE="https://github.com/HaikuArchives/Album/"
2015-05-26 15:18:49 +00:00
COPYRIGHT="2006-2015 by Matjaž Kovač"
2015-12-26 10:44:26 +00:00
LICENSE="MIT"
2019-07-02 12:03:09 +00:00
REVISION="7"
srcGitRev="6055c517faa827f126c6e6abdc55c1dc2d7f4f88"
2018-08-14 07:17:46 +00:00
SOURCE_URI="https://github.com/HaikuArchives/Album/archive/$srcGitRev.tar.gz"
2019-07-02 12:03:09 +00:00
CHECKSUM_SHA256="2e55f2236b58031433b71b074ae7aeab02f05ed413fb47656010dc93dd36d51f"
2018-08-14 07:17:46 +00:00
SOURCE_DIR="Album-$srcGitRev"
2015-12-26 10:44:26 +00:00
ARCHITECTURES="all ?x86"
2014-07-21 17:32:26 +00:00
2018-08-14 07:17:46 +00:00
USER_SETTINGS_FILES="
settings/Album_settings
"
PROVIDES="
album = $portVersion
app:Album = $portVersion
"
REQUIRES="
haiku
2017-12-26 19:25:54 +00:00
lib:libintl
lib:libiptcdata
"
2015-12-26 10:44:26 +00:00
BUILD_REQUIRES="
haiku_devel
2017-12-26 19:25:54 +00:00
devel:libintl
devel:libiptcdata
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
cd src
2014-07-21 17:32:26 +00:00
make OBJ_DIR=objects
2013-03-29 14:04:07 +00:00
}
INSTALL()
{
mkdir -p $appsDir
cp -a src/objects/Album $appsDir
addAppDeskbarSymlink $appsDir/Album
2013-03-29 14:04:07 +00:00
}