17 lines
483 B
Plaintext
17 lines
483 B
Plaintext
# Description: a port to Qt of the editing component scintilla
|
|
# URL: https://www.riverbankcomputing.com/software/qscintilla/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: qt5
|
|
|
|
name=qscintilla-qt5
|
|
version=2.13.3
|
|
release=1
|
|
source=(https://www.riverbankcomputing.com/static/Downloads/QScintilla/$version/QScintilla_src-$version.tar.gz)
|
|
|
|
build() {
|
|
cd QScintilla_src-$version/src
|
|
qmake
|
|
make PREFIX=/usr
|
|
make DESTDIR=$PKG INSTALL_ROOT=$PKG install
|
|
}
|