grim/purple-spasm

3c2a35b27899
Add some basic send message support and replies for pings
#!/usr/bin/make -f
PIDGIN_TREE_TOP ?= ../pidgin-2.12.0
WIN32_DEV_TOP ?= $(PIDGIN_TREE_TOP)/../win32-dev
PLUGIN_NAME := purple-spasm
PLUGIN_VERSION := 0.0.1
PLUGIN_SOURCES := \
spasm.c \
spasm-account.c \
spasm-chat.c \
spasm-rest.c \
spasm-user.c
PLUGIN_HEADERS := \
spasm.h \
spasm-account.h \
spasm-chat.h \
spasm-const.h \
spasm-rest.h \
spasm-user.h
PROTOCOL_PIXMAPS := \
spasm16.png \
spasm22.png \
spasm48.png \
spasmscaled.svg
PLUGIN_CFLAGS := \
$(shell pkg-config --cflags json-glib-1.0) \
$(shell pkg-config --cflags libsoup-2.4)
PLUGIN_LIBS := \
$(shell pkg-config --libs json-glib-1.0) \
$(shell pkg-config --libs libsoup-2.4)
include libpurple.mk