1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
### mandatory fields
PKG_NAME=geoip.country
### things relative to the C library part
CLIB_CFLAGS=$(shell pkg-config geoip --cflags)
CLIB_LDFLAGS=$(shell pkg-config geoip --libs)
CLIB_OBJS=src/database.lo src/country.lo
### things relative to the lua library part
#LUA_HEADER=src/lua-geoip.h
#LUA_SOURCES=$(shell src/*.c)
#LUA_SOURCES_MANGLER=
#LUA_MODNAME=geoip.country
#LUA_TEST=test/test.lua
### this part is relative to pkg-config
#PKG_VERSION=
#PKG_LIBS_PRIVATE=
#PKG_URL=
PKG_REQUIRES=geoip
#PKG_CONFLICTS=
|