0
0
Fork 0
haikuports/haiku-apps/photograbber/photograbber-2.3.4.recipe

56 lines
1.4 KiB
Bash
Raw Permalink Normal View History

SUMMARY="A tool to download/delete pictures from digital cameras"
DESCRIPTION="Photograbber has a plugin system which is based on the BDCP2 \
API created by Graham Wharton (Creator of 'Exposure!'). With this system \
it is possible to add support to more cameras. If you have developed a \
BCDP2 compatible plugin for your camera (or just found one somewhere), \
just copy it into the 'plugins' folder and PhotoGrabber will detect \
and use it.
At this moment PhotoGrabber only supports PTP (Picture Transfer Protocol) \
cameras. In the future Mass Storage and Bluetooth support may be added."
2015-02-02 16:02:56 +00:00
HOMEPAGE="https://github.com/HaikuArchives/PhotoGrabber"
2015-02-02 16:09:38 +00:00
COPYRIGHT="2010 Jan-Rixt Van Hoye (Jixt)"
2015-02-02 16:02:56 +00:00
LICENSE="MIT"
2020-08-19 16:41:27 +00:00
REVISION="1"
srcGitRev="ec975b2a385fbb95febc99db502297e00eac28d9"
SOURCE_URI="https://github.com/HaikuArchives/PhotoGrabber/archive/$srcGitRev.tar.gz"
2020-08-19 16:41:27 +00:00
CHECKSUM_SHA256="7914446eb8ddb6454ef4cfebe0d5754833dec8b9d205c7b2be0cf8f309f96560"
SOURCE_DIR="PhotoGrabber-$srcGitRev"
2015-02-02 16:02:56 +00:00
ARCHITECTURES="all"
2015-02-02 16:02:56 +00:00
PROVIDES="
photograbber = $portVersion
app:PhotoGrabber = $portVersion
"
REQUIRES="
haiku
lib:libexif
2018-08-09 09:26:07 +00:00
lib:libiconv
2015-02-02 16:02:56 +00:00
"
2015-02-02 16:02:56 +00:00
BUILD_REQUIRES="
haiku_devel
devel:libexif
2018-08-09 09:26:07 +00:00
devel:libiconv
2015-02-02 16:02:56 +00:00
"
BUILD_PREREQUIRES="
2018-08-09 09:26:07 +00:00
makefile_engine
cmd:g++
2015-02-02 16:02:56 +00:00
cmd:make
"
BUILD()
{
mkdir -p dist/plugins
make $jobArgs
2015-02-02 16:02:56 +00:00
}
INSTALL()
{
mkdir -p $appsDir/PhotoGrabber
cp -r dist/* $appsDir/PhotoGrabber
2015-02-02 16:02:56 +00:00
addAppDeskbarSymlink $appsDir/PhotoGrabber/PhotoGrabber
}