# SHORT DESC: GTK+ Gnutella Client
# LONG DESC: A GTK+ Gnutella client for Unix, efficient, reliable and fast, written in C. It has been optimized for speed and scalability, with low-memory consumption. It is meant to be left running 24x7, using little CPU and only the configured bandwidth.
if [ "${TARGETARCH}" = "x86_64" ]; then
grep -v "STATIC_ASSERT" src/main.c > src/main.c.1
cat src/main.c.1 > src/main.c
rm -f src/main.c.1
fi
./configure.gnu --prefix=/usr && \
make && \
make install || exit 1
|