mirror of
https://github.com/lunarmodules/lua-iconv.git
synced 2025-06-22 20:24:36 +02:00
35 lines
773 B
Makefile
35 lines
773 B
Makefile
PKG_NAME=iconv
|
|
|
|
### things relative to the C library part
|
|
CLIB_CFLAGS=
|
|
CLIB_LDFLAGS=
|
|
CLIB_OBJS=luaiconv.lo
|
|
VERSION_INFO=0:0:0
|
|
|
|
### things relative to the lua library part
|
|
LUA_HEADER=
|
|
LUA_SOURCES=
|
|
LUA_MODNAME=iconv
|
|
LUA_TEST=test_iconv.lua
|
|
|
|
### this part is relative to pkg-config
|
|
PKG_VERSION=$(shell dpkg-parsechangelog|grep ^Ver|cut -d ' ' -f 2|cut -d '-' -f 1)
|
|
PKG_LIBS_PRIVATE=
|
|
PKG_URL=http://lua-iconv.luaforge.net/
|
|
PKG_REQUIRES=
|
|
PKG_CONFLICTS=
|
|
|
|
### In addition, to gather flexibility, you can set these hooks
|
|
### (called in this order)
|
|
pre-all-hook::
|
|
post-all-hook::
|
|
pre-test-hook::
|
|
pre-lua-dynamic-test-hook::
|
|
pre-dynamic-link-hook::
|
|
pre-app-dynamic-test-hook::
|
|
pre-static-link-hook::
|
|
pre-app-static-test-hook::
|
|
post-test-hook::
|
|
pre-install-hook::
|
|
post-install-hook::
|