Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ventosus on github.
  • I am ventosus (https://keybase.io/ventosus) on keybase.
  • I have a public key whose fingerprint is 5AE2 6CEB BF49 705C 19FB 273A 3025 8F99 258C B76A

To claim this, I am signing this object:

@ventosus
ventosus / lv2validate
Created July 17, 2016 08:05
LV2 validation script
#!/bin/sh
if (( $# == 0 ))
then
echo "usage: $0 [path_to_project/*.ttl]"
exit -1
fi
: ${LV2PREFIX:="/opt/lv2/lib/lv2"}
LV2SPEC="${LV2SPEC} ${LV2PREFIX}/log.lv2/log.ttl"
@ventosus
ventosus / Makefile
Last active January 4, 2019 23:58
LV2 discovery by plugin class
all: list
lv2_class: lv2_class.c
gcc -std=gnu99 -O3 -o $@ $< $(shell pkg-config --cflags --libs lilv-0)
list: lv2_class
./$< \
| sort \
| sed 's/,/\n/g' \
| zenity \