blob: 334ab236e17512d68c045aef0c2af69937206105 [file]
#!/bin/bash
download()
{
# git_clone_update https://github.com/rminnich/ftq.git
# Use Ying's git temporary until the fixes are merged by upstream
git_clone_update https://github.com/hying-caritas/ftq.git
}
build()
{
make
}
install()
{
for f in ftq_*; do
[ -x $f ] && cp -af $f $BM_ROOT
done
[ -n "$(ls $BM_ROOT)" ]
}