blob: 92ae1eda3da9b75b201ddb338a9ea8445cb58f29 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
./configure --prefix=$HOME/gtk/inst \
--with-localedir=Contents/Resources/share/locale \
--with-themedir=Contents/Resources/share/icons \
&& make \
&& make install-strip \
&& (cd plugin/attachment_tool; make install-plugin)
|