2017-08-16 10:20:56 +02:00
|
|
|
# Template file for 'gtkedit'
|
|
|
|
pkgname=gtkedit
|
2017-09-24 06:44:31 +02:00
|
|
|
version=0.1.8
|
2017-08-16 10:20:56 +02:00
|
|
|
revision=1
|
|
|
|
build_style=gnu-makefile
|
|
|
|
hostmakedepends="pkg-config"
|
|
|
|
makedepends="gtk+-devel"
|
|
|
|
maintainer="cr6git <quark6@protonmail.com>"
|
|
|
|
short_desc="Text Editor written in C and Gtk+2"
|
|
|
|
homepage="https://github.com/drankinatty/gtkwrite"
|
|
|
|
license="GPL-2"
|
|
|
|
distfiles="https://github.com/drankinatty/gtkwrite/archive/v${version}.tar.gz"
|
2017-09-24 06:44:31 +02:00
|
|
|
checksum=bcca9e6dbdfafe9c77204ff0dee57678286fd9c5b6fd21e73d11b6652f0c076f
|
2017-08-16 10:20:56 +02:00
|
|
|
wrksrc="gtkwrite-${version}"
|
|
|
|
|
|
|
|
# Without GtkSourceView it will compile as 'gtkedit'
|
|
|
|
# With GtkSourceView it compiles as 'gtkwrite'
|
|
|
|
|
|
|
|
pre_build() {
|
|
|
|
CFLAGS+=" $(pkg-config --cflags gtk+-2.0)"
|
|
|
|
LDFLAGS+=" $(pkg-config --libs gtk+-2.0)"
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
vbin bin/gtkedit_dev gtkedit
|
|
|
|
vdoc README.md
|
|
|
|
vinstall img/gtkwrite.png 644 usr/share/gtkwrite/img
|
|
|
|
vinstall img/gtkwrite.ico 644 usr/share/gtkwrite/img
|
|
|
|
vinstall styles/gtkwrite.xml 644 usr/share/gtksourceview-2.0/styles
|
|
|
|
vinstall styles/gtkwrite_light.xml 644 usr/share/gtksourceview-2.0/styles
|
|
|
|
}
|