mirror of
https://github.com/lunarmodules/lua-iconv.git
synced 2025-06-23 04:34:33 +02:00
Some updates for r3
git-svn-id: file:///var/svn/lua-iconv/trunk@33 9538949d-8f27-0410-946f-ce01ef448559
This commit is contained in:
parent
48ca55c30f
commit
2d5eba1ba5
15
README
15
README
@ -1,19 +1,19 @@
|
||||
|
||||
Lua-iconv: performs character set conversions in Lua
|
||||
(c) 2005-06 Alexandre Erwin Ittner <aittner@netuno.com.br>
|
||||
(c) 2005-07 Alexandre Erwin Ittner <aittner@netuno.com.br>
|
||||
Project page: http://lua-iconv.luaforge.net/
|
||||
|
||||
|
||||
=== INTRODUCTION ===
|
||||
|
||||
Lua-iconv is a Lua binding to the POSIX 'iconv' library. The iconv
|
||||
library converts a sequence of characters from one codeset into a
|
||||
Lua-iconv is POSIX 'iconv' binding for the Lua Programming Language. The
|
||||
iconv library converts a sequence of characters from one codeset into a
|
||||
sequence of corresponding characters in another codeset. The codesets
|
||||
are those specified in the iconv.new() call that returned the conversion
|
||||
descriptor, cd.
|
||||
|
||||
Lua-iconv r2 *requires* Lua 5.1. If you are using Lua 5.0, please use the
|
||||
previous version (lua-iconv-r1).
|
||||
Lua-iconv r3 *requires* Lua 5.1. If you are using Lua 5.0, please use the
|
||||
first release (lua-iconv-r1).
|
||||
|
||||
Details regarding iconv may be obtained from:
|
||||
http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html
|
||||
@ -22,7 +22,7 @@ http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html
|
||||
|
||||
=== LICENSE ===
|
||||
|
||||
Lua-iconv is (c) 2005-06 Alexandre Erwin Ittner <aittner@netuno.com.br>
|
||||
Lua-iconv is (c) 2005-07 Alexandre Erwin Ittner <aittner@netuno.com.br>
|
||||
|
||||
Lua-iconv is copyrighted free software: it can be used for both academic
|
||||
and commercial purposes at absolutely no cost. There are no royalties
|
||||
@ -122,3 +122,6 @@ nstr, err = cd:iconv(str)
|
||||
iconv.ERROR_UNKNOWN
|
||||
There was an unknown error.
|
||||
|
||||
|
||||
=== EOF ===
|
||||
|
||||
|
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -1,6 +1,6 @@
|
||||
lua-iconv (3r3-1) unstable; urgency=low
|
||||
lua-iconv (0.r3-1) unstable; urgency=low
|
||||
|
||||
* Initial release Closes: #nnnn (nnnn is the bug number of your ITP)
|
||||
* First release in .deb format.
|
||||
|
||||
-- Alexandre Erwin Ittner <aittner@netuno.com.br> Wed, 3 Feb 2007 00:20:09 -0200
|
||||
|
||||
|
6
debian/control
vendored
6
debian/control
vendored
@ -10,6 +10,6 @@ Architecture: any
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: lua5.1
|
||||
Description: iconv bindings for the Lua Programming Language
|
||||
Lua-iconv is a Lua binding to the POSIX 'iconv' library, that converts a
|
||||
sequence of characters from one codeset into a sequence of corresponding
|
||||
characters in another codeset.
|
||||
Lua-iconv is POSIX 'iconv' binding for the Lua Programming Language. It
|
||||
converts a sequence of characters from one codeset into a sequence of
|
||||
corresponding characters in another codeset.
|
||||
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -8,7 +8,7 @@
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
# This is the debhelper compatability version to use.
|
||||
export DH_COMPAT=3
|
||||
export DH_COMPAT=4
|
||||
|
||||
LUAPKG=lua5.1
|
||||
INSTALL_PATH=`pkg-config $(LUAPKG) --variable=INSTALL_CMOD`
|
||||
@ -42,7 +42,7 @@ install: build
|
||||
dh_installdirs
|
||||
|
||||
mkdir -p debian/lua-iconv/usr/share/doc/lua-iconv
|
||||
mkdir -p debian/lua-iconvs/$(INSTALL_PATH)
|
||||
mkdir -p debian/lua-iconv/$(INSTALL_PATH)
|
||||
|
||||
cp iconv.so debian/lua-iconv/$(INSTALL_PATH)
|
||||
cp README COPYING test_iconv.lua debian/lua-iconv/usr/share/doc/lua-iconv/
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
PACKAGE=lua-iconv
|
||||
VERSION=r2
|
||||
VERSION=r3
|
||||
|
||||
DIRNAME=$PACKAGE-$VERSION
|
||||
TGZNAME=$DIRNAME.tar.gz
|
||||
@ -9,7 +9,7 @@ TGZNAME=$DIRNAME.tar.gz
|
||||
rm -f $TGZNAME
|
||||
mkdir $DIRNAME
|
||||
|
||||
cp COPYING Makefile README luaiconv.c test_iconv.lua $DIRNAME
|
||||
cp -r debian COPYING Makefile README luaiconv.c test_iconv.lua $DIRNAME
|
||||
|
||||
tar -czf $TGZNAME $DIRNAME
|
||||
rm -rf $DIRNAME
|
||||
|
Loading…
x
Reference in New Issue
Block a user