mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
These packages were failing to build thru PulkoMandy's buildbot at http://pulkomandy.tk/~pulkomandy/
53 lines
1.3 KiB
Bash
53 lines
1.3 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="2"
|
|
commit="d1df3fbe63fca6efb99c00f53515a1b0515ec441"
|
|
SOURCE_URI="https://github.com/HaikuArchives/PhotoGrabber/archive/$commit.tar.gz"
|
|
CHECKSUM_SHA256="05da59c345544ac0e972452f6a86a5d17189d4770717db40b7ea86e0c9ab2326"
|
|
SOURCE_DIR="PhotoGrabber-$commit"
|
|
|
|
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
|
|
}
|