mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
SUMMARY="Tool to edit and preview Qt style sheets (QSS)"
|
|
DESCRIPTION="QSS Editor is a tool to edit and preview Qt style sheets (QSS). \
|
|
QSS description and reference: \
|
|
http://qt-project.org/doc/qt-4.8/stylesheet.html
|
|
|
|
Features:
|
|
* Realtime QSS editor with autocompletion
|
|
* Preview widgets"
|
|
HOMEPAGE="https://sourceforge.net/projects/qsseditor/"
|
|
COPYRIGHT="2014 Dmitry Baryshe"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="2"
|
|
SOURCE_URI="https://sourceforge.net/projects/qsseditor/files/sources/qsseditor-$portVersion.zip"
|
|
CHECKSUM_SHA256="3923b9e783957bc3485ef0bb67d78027d3eb586ee4acc5f99efbeb65ffc38998"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
qsseditor = $portVersion
|
|
app:QssEditor = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix}
|
|
lib:libqt5$secondaryArchSuffix
|
|
lib:libqscintilla2$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libqt5$secondaryArchSuffix
|
|
devel:libqscintilla2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++${secondaryArchSuffix}
|
|
cmd:make
|
|
cmd:which
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
qmake
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp QssEditor $appsDir
|
|
addAppDeskbarSymlink $appsDir/QssEditor
|
|
}
|