31 lines
974 B
Bash
31 lines
974 B
Bash
# Template file for 'gtkedit'
|
|
pkgname=gtkedit
|
|
version=0.2.5
|
|
revision=1
|
|
wrksrc="gtkwrite-${version}"
|
|
build_style=gnu-makefile
|
|
hostmakedepends="pkg-config"
|
|
makedepends="gtk+-devel"
|
|
depends="desktop-file-utils"
|
|
short_desc="Text Editor written in C and Gtk+2"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://github.com/drankinatty/gtkwrite"
|
|
distfiles="https://github.com/drankinatty/gtkwrite/archive/v${version}.tar.gz"
|
|
checksum=6763f504ca93932dd8293f189407b3d4a0655d26d16f211c67f220f24a96734f
|
|
|
|
# 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 ${FILESDIR}/gtkedit.desktop 644 usr/share/applications
|
|
}
|