Skip to content

Instantly share code, notes, and snippets.

View abique's full-sized avatar
🏡
Home

Alexandre Bique abique

🏡
Home
View GitHub Profile
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and
I have the right to submit it under the MIT license; or
(b) The contribution is based upon previous work that, to the
best of my knowledge, is covered under an appropriate
open source license and I have the right under that license
to submit that work with modifications, whether created in
whole or in part by me, under the MIT license; or
@abique
abique / README.md
Last active November 17, 2022 10:58
Proprietary Audio Plugins for Linux, but the right way

Proprietary Audio Plugins for Linux, but the right way

Why the current approach to VST and VST3 does not work for proprietary plugins on Linux ?

When building plugins for Linux there are two options and one problem:

  1. Link to the system libraries
  2. Build all your dependencies and statically link to them
  3. Can't use gtk or qt.
@abique
abique / cps-remotely.sh
Last active August 29, 2015 14:16
cps-remotely.sh
#!/bin/bash
#You can use this script to compile S2E remotely from another machine (e.g., a Mac).
#For instance, you can edit your code in Qt Creator running on Mac OS X,
#press build (Cmd b) and it will build S2E on a Linux box of your choice.
#Tested with Mac OS X -> Linux. It should work for Linux -> Linux too.
#Customize the config script appropriately ...
@abique
abique / load-vst.c
Created October 1, 2014 18:05
Load Vst
#include <stdio.h>
#include <dlfcn.h>
int main(int argc, char **argv)
{
void * handle = dlopen(argv[1], RTLD_NOW | RTLD_LOCAL);
if (!handle) {
fprintf(stderr, "failed to load %s: %s\n", argv[1], dlerror());
return 1;
}
### Keybase proof
I hereby claim:
* I am abique on github.
* I am abique (https://keybase.io/abique) on keybase.
* I have a public key whose fingerprint is 6AE9 75DE CBFC B5D0 5684 3B8A DFEC 3819 4002 5510
To claim this, I am signing this object:
@abique
abique / PKGBUILD
Created March 7, 2014 07:57
Openswan
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
# Maintainer: <>
pkgname=libreswan
pkgver=3.8
pkgrel=1
pkgdesc=""
arch=('i686' 'x86_64')
url="https://www.libreswan.org/"
license=('GPLv2')
groups=()
@abique
abique / PKGBUILD
Created February 25, 2014 14:41
mviewer PKGBUILD
# Maintainer: Ernie Brodeur (ebrodeur@ujami.net)>
pkgname=mviewer
pkgver=0.9.1
pkgrel=2
pkgdesc="A simple web-based Administration and Management Tool for MongoDB."
url="https://github.com/Imaginea/mViewer"
arch=('any')
license=('Apache 2.0')
depends=('java-runtime')
source=("https://github.com/downloads/Imaginea/mViewer/mViewer-v${pkgver}.tar.gz"
@abique
abique / PKGBUILD
Created October 9, 2011 13:32
mingw32-qt
# Contributor: Denis Martinez <deuns.martinez AT gmail.com>
# Contributor: Alexander 'hatred' Drozdov <adrozdoff AT gmail.com>
# Contributor: mosra <mosra@centrum.cz>
pkgname=(mingw32-qt mingw32-qt-private-headers)
pkgver=4.7.4
pkgrel=1
pkgdesc="The Qt gui toolkit (mingw32)."
arch=('any')
url="http://qt.nokia.com/"