blob: 9965c4a81f63e8b896617577ce7cfa6ad195ea95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: a port to Qt of the editing component scintilla
# URL: https://www.riverbankcomputing.com/software/qscintilla/
# Maintainer: Erich Eckner, crux at eckner dot net
# Contributor: John McQuah, jmcquah at disroot dot org
# Depends on: qt5
name=qscintilla-qt5
version=2.14.0
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
}
|