Skip to content

Instantly share code, notes, and snippets.

@BarbUk
Created February 8, 2020 13:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save BarbUk/ce416ba7e6fe6a8ce32a2c14a8b31c7c to your computer and use it in GitHub Desktop.
pkgname=vte3-ng
_basever=0.58.2
pkgver=$_basever.a
pkgrel=1
pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3 (patched with support for fullwidth emoji)"
arch=('x86_64')
license=('LGPL')
options=('!emptydirs')
depends=('gtk3' 'vte-common' 'pcre2')
makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 'gperf' 'ninja' 'meson')
url="https://github.com/thestinger/vte-ng"
source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz)
sha256sums=('2aecf7dc4e15789f93be38eec63c8bed22ea3adb431b37e7117bb8bd9a4f28a9')
provides=(vte3=$_basever vte3-ng)
conflicts=(vte3)
build() {
cd "vte-ng-$pkgver"
meson _build --prefix=/usr
ninja -C _build
}
package() {
cd "vte-ng-$pkgver"
DESTDIR="$pkgdir" ninja -C _build install
rm "$pkgdir/etc/profile.d/vte.sh"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment