void-packages/srcpkgs/scite/template
2016-12-31 14:07:59 +01:00

34 lines
1,013 B
Bash

# Template file for 'scite'
pkgname=scite
version=3.7.2
revision=1
create_wrksrc=yes
hostmakedepends="pkg-config"
makedepends="gtk+-devel lua51-devel"
short_desc="SCIntilla based Text Editor"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="MIT"
homepage="http://www.scintilla.org/SciTEDownload.html"
distfiles="http://www.scintilla.org/scite${version//./}.tgz"
checksum=1aae46ad22abc647864c4255e9497eec702938052b35c0e5d452a0ccba23fe7f
post_extract() {
sed -i 's/gthread-2.0/& lua/' scite/gtk/makefile
}
do_build() {
make ${makejobs} -C scintilla/gtk \
CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
CC="$CC $LDFLAGS" CXX="$CXX $LDFLAGS"
make ${makejobs} -C scite/gtk \
CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
CC="$CC $LDFLAGS" CXX="$CXX $LDFLAGS" \
LUA_CORE_OBJS= LUA_LIB_OBJS=
}
do_install() {
make ${makejobs} -C scite/gtk install DESTDIR="$DESTDIR"
vlicense scite/License.txt LICENSE.scite
vlicense scintilla/License.txt LICENSE.scintilla
ln -sf SciTE $DESTDIR/usr/bin/scite
}