Files
haikuports/haiku-apps/photograbber/photograbber-2.3.4.recipe
Humdinger fc71a3b81b photograbber: bump srcGitRev for a new revision
Fixes crashes and adds/updates translations.

Fixes #6995
2022-06-20 07:17:58 +02:00

56 lines
1.4 KiB
Bash

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."
HOMEPAGE="https://github.com/HaikuArchives/PhotoGrabber"
COPYRIGHT="2010 Jan-Rixt Van Hoye (Jixt)"
LICENSE="MIT"
REVISION="2"
srcGitRev="7d4ed31194dd2983ea2404f1333373a91cbec27c"
SOURCE_URI="https://github.com/HaikuArchives/PhotoGrabber/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="fc80d5d61aa7b2dca79a1c0c547976667a186b255e7aa9fccd612026349b1a3f"
SOURCE_DIR="PhotoGrabber-$srcGitRev"
ARCHITECTURES="all"
PROVIDES="
photograbber = $portVersion
app:PhotoGrabber = $portVersion
"
REQUIRES="
haiku
lib:libexif
lib:libiconv
"
BUILD_REQUIRES="
haiku_devel
devel:libexif
devel:libiconv
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
mkdir -p dist/plugins
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir/PhotoGrabber
cp -r dist/* $appsDir/PhotoGrabber
addAppDeskbarSymlink $appsDir/PhotoGrabber/PhotoGrabber
}