mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
50 lines
1.2 KiB
Bash
50 lines
1.2 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 Bluethooth support may be added."
|
|
HOMEPAGE="https://github.com/HaikuArchives/PhotoGrabber"
|
|
COPYRIGHT="2010 Jan-Rixt Van Hoye (Jixt)"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="git://github.com/HaikuArchives/PhotoGrabber#1221b33"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
photograbber = $portVersion
|
|
app:PhotoGrabber = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libiconv
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libiconv
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++
|
|
cmd:make
|
|
makefile_engine
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
PG.sh
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -r build/PhotoGrabber $appsDir
|
|
|
|
addAppDeskbarSymlink $appsDir/PhotoGrabber/PhotoGrabber
|
|
}
|