mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
54 lines
956 B
Bash
54 lines
956 B
Bash
SUMMARY="Powerful yet simple to use screenshot software"
|
|
DESCRIPTION="Features
|
|
|
|
* Customizable appearance.
|
|
* Easy to use.
|
|
* In-app screenshot edition.
|
|
* DBus interface.
|
|
* Upload to Imgur."
|
|
HOMEPAGE="https://github.com/lupoDharkael/flameshot/"
|
|
COPYRIGHT="2017 lupoDharkael"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/lupoDharkael/flameshot/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="32d593c14c37286d9f64873c4ef9a07eb084723c92b2280d5c22152547c1e3f0"
|
|
#ADDITIONAL_FILES="flameshot.rdef"
|
|
|
|
ARCHITECTURES="x86_64"
|
|
|
|
PROVIDES="
|
|
flameshot = $portVersion
|
|
app:Flameshot = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libGL
|
|
lib:libQt5Core
|
|
lib:libQt5DBus
|
|
lib:libQt5Gui
|
|
lib:libQt5Network
|
|
lib:libQt5Widgets
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:qmake >= 5
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
qmake
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp flameshot $appsDir/Flameshot
|
|
addAppDeskbarSymlink $appsDir/Flameshot
|
|
}
|