diff options
Diffstat (limited to 'extra/catgirl/build')
| -rwxr-xr-x | extra/catgirl/build | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/extra/catgirl/build b/extra/catgirl/build new file mode 100755 index 00000000..3a3e777c --- /dev/null +++ b/extra/catgirl/build @@ -0,0 +1,11 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" +export PKG_CONFIG="pkgconf --static" + +./configure \ +    --prefix=/usr \ +    --mandir=/usr/share/man + +make all +make DESTDIR="$1" install | 
