28 lines
701 B
Plaintext
Raw Normal View History

2023-09-04 04:38:14 -04:00
# Description: A text widget adding syntax highlighting.
# URL: https://gnome.org
# Maintainer: mac-a-r0ni, j at lngn dot net
2024-08-20 05:58:59 -04:00
# Depends on: glade gtk-doc
# Optional: vala
2023-09-04 04:38:14 -04:00
name=gtksourceview4
version=4.8.4
release=3
2023-09-04 04:38:14 -04:00
source=(https://download.gnome.org/sources/gtksourceview/4.8/gtksourceview-$version.tar.xz)
build() {
prt-get isinst vala && PKGMK_GTKSV+=' -Dvapi=true' || PKGMK_GTKSV+=' -Dvapi=false'
2023-09-04 04:38:14 -04:00
mv gtksourceview-$version $name-$version
meson setup $name-$version build $PKGMK_GTKSV \
2023-09-04 04:38:14 -04:00
--prefix=/usr \
--buildtype=plain \
-Dgir=true \
2023-09-04 04:38:14 -04:00
-Db_lto=true \
-Db_pie=true
meson compile -C build
DESTDIR=$PKG meson install -C build
rm -rf $PKG/usr/share/locale
}