debian/0000755000000000000000000000000012263712605007172 5ustar debian/libdatrie1.docs0000644000000000000000000000001412263712472012061 0ustar NEWS README debian/libdatrie-doc.install0000644000000000000000000000006612263712472013270 0ustar usr/share/doc/datrie/html usr/share/doc/libdatrie-doc debian/libdatrie-dev.docs0000644000000000000000000000001412263712472012554 0ustar NEWS README debian/libdatrie-dev.install0000644000000000000000000000010712263712472013275 0ustar usr/include/* usr/lib/*/lib*.a usr/lib/*/lib*.so usr/lib/*/pkgconfig/* debian/libdatrie-doc.docs0000644000000000000000000000003512263712472012546 0ustar NEWS README README.migration debian/libdatrie1.symbols0000644000000000000000000000251712263712472012633 0ustar libdatrie.so.1 libdatrie1 #MINVER# * Build-Depends-Package: libdatrie-dev DATRIE_0.2@DATRIE_0.2 0.2.1 alpha_char_strlen@DATRIE_0.2 0.2.0 alpha_map_add_range@DATRIE_0.2 0.2.0 alpha_map_clone@DATRIE_0.2 0.2.0 alpha_map_free@DATRIE_0.2 0.2.0 alpha_map_new@DATRIE_0.2 0.2.0 trie_delete@DATRIE_0.2 0.2.0 trie_enumerate@DATRIE_0.2 0.2.0 trie_free@DATRIE_0.2 0.2.0 trie_is_dirty@DATRIE_0.2 0.2.0 trie_new@DATRIE_0.2 0.2.0 trie_new_from_file@DATRIE_0.2 0.2.0 trie_retrieve@DATRIE_0.2 0.2.0 trie_root@DATRIE_0.2 0.2.0 trie_save@DATRIE_0.2 0.2.0 trie_state_clone@DATRIE_0.2 0.2.0 trie_state_copy@DATRIE_0.2 0.2.0 trie_state_free@DATRIE_0.2 0.2.0 trie_state_get_data@DATRIE_0.2 0.2.0 trie_state_is_single@DATRIE_0.2 0.2.0 trie_state_is_walkable@DATRIE_0.2 0.2.0 trie_state_rewind@DATRIE_0.2 0.2.0 trie_state_walk@DATRIE_0.2 0.2.0 trie_store@DATRIE_0.2 0.2.0 DATRIE_0.2.4@DATRIE_0.2.4 0.2.4 trie_store_if_absent@DATRIE_0.2.4 0.2.4 trie_fread@DATRIE_0.2.4 0.2.4 trie_fwrite@DATRIE_0.2.4 0.2.4 DATRIE_0.2.6@DATRIE_0.2.6 0.2.6 trie_state_walkable_chars@DATRIE_0.2.6 0.2.6 trie_iterator_new@DATRIE_0.2.6 0.2.6 trie_iterator_free@DATRIE_0.2.6 0.2.6 trie_iterator_next@DATRIE_0.2.6 0.2.6 trie_iterator_get_key@DATRIE_0.2.6 0.2.6 trie_iterator_get_data@DATRIE_0.2.6 0.2.6 DATRIE_0.2.7@DATRIE_0.2.7 0.2.7 alpha_char_strcmp@DATRIE_0.2.7 0.2.7 debian/rules0000755000000000000000000000611012263712472010252 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) build_flags = --build=$(DEB_BUILD_GNU_TYPE) else build_flags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) endif dpkg-buildflags = DEB_BUILD_MAINT_OPTIONS="hardening=+pie,+bindnow" dpkg-buildflags build_flags += $(shell $(dpkg-buildflags) --export=configure) SHARED_PKG := libdatrie1 SHLIB_VER := 0.2.0 config.status: configure.ac dh_testdir [ -d m4 ] || mkdir m4 dh_autoreconf # Add here commands to configure the package. ./configure --prefix=/usr \ --mandir=\$${prefix}/share/man \ --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \ $(build_flags) build-indep: build-indep-stamp build-indep-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) -C doc touch $@ build-arch: build-arch-stamp build-arch-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) -C datrie $(MAKE) -C tools $(MAKE) -C man ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) $(MAKE) -C tests check endif touch $@ build: build-indep build-arch clean: dh_testdir dh_testroot # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) distclean dh_autoreconf_clean dh_clean install-indep: build-indep dh_testdir dh_testroot dh_prep dh_installdirs -i # Add here commands to install the package into debian/tmp $(MAKE) -C doc install DESTDIR=$(CURDIR)/debian/tmp install-arch: build-arch dh_testdir dh_testroot dh_prep dh_installdirs -a # Add here commands to install the package into debian/tmp $(MAKE) -C datrie install DESTDIR=$(CURDIR)/debian/tmp $(MAKE) -C tools install DESTDIR=$(CURDIR)/debian/tmp $(MAKE) -C man install DESTDIR=$(CURDIR)/debian/tmp $(MAKE) install-am DESTDIR=$(CURDIR)/debian/tmp # Build architecture-independent files here. binary-indep: build-indep install-indep dh_testdir dh_testroot dh_installchangelogs -i ChangeLog dh_installdocs -i dh_install -i --sourcedir=debian/tmp dh_link -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i -- -Zxz # Build architecture-dependent files here. binary-arch: build-arch install-arch dh_testdir dh_testroot dh_installchangelogs -a ChangeLog dh_installdocs -a dh_install -a --sourcedir=debian/tmp dh_installman -a dh_link -a dh_strip -a dh_compress -a dh_fixperms -a dh_makeshlibs -a -p$(SHARED_PKG) -V'$(SHARED_PKG) (>= $(SHLIB_VER))' dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a -- -Zxz binary: binary-indep binary-arch .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-arch install-indep debian/compat0000644000000000000000000000000212263712472010372 0ustar 7 debian/libdatrie1.install0000644000000000000000000000002412263712472012600 0ustar usr/lib/*/lib*.so.* debian/libdatrie-doc.doc-base0000644000000000000000000000045612263712472013302 0ustar Document: libdatrie-reference Title: libdatrie Reference Manual Author: Theppitak Karoonboonyanan Abstract: This manual describes libdatrie API Section: Programming Format: HTML Index: /usr/share/doc/libdatrie-doc/html/index.html Files: /usr/share/doc/libdatrie-doc/html/*.html debian/libdatrie1-bin.docs0000644000000000000000000000001412263712472012627 0ustar NEWS README debian/source/0000755000000000000000000000000012263712472010474 5ustar debian/source/format0000644000000000000000000000001412263712472011702 0ustar 3.0 (quilt) debian/control0000644000000000000000000000632012263712472010600 0ustar Source: libdatrie Priority: optional Maintainer: Theppitak Karoonboonyanan Build-Depends: debhelper (>= 8.1.3), dh-autoreconf, dpkg-dev (>= 1.16.1~) Build-Depends-Indep: doxygen (>= 1.8.4) Standards-Version: 3.9.5 Section: libs Vcs-Git: git://anonscm.debian.org/collab-maint/libdatrie.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/libdatrie.git Homepage: http://linux.thai.net/projects/libthai Package: libdatrie-dev Section: libdevel Architecture: any Multi-Arch: same Depends: libdatrie1 (= ${binary:Version}), ${misc:Depends} Suggests: libdatrie-doc (= ${source:Version}) Conflicts: libdatrie0-dev Description: Development files for double-array trie library Trie is a kind of digital search tree, an efficient indexing method with O(1) time complexity for searching. Comparably as efficient as hashing, trie also provides flexibility on incremental matching and key spelling manipulation. This makes it ideal for lexical analyzers, as well as spelling dictionaries. . This library is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. The details of the implementation can be found at http://linux.thai.net/~thep/datrie/datrie.html . This package contains the development libraries, header files and manpages you need to develop your programs using the datrie library. Package: libdatrie1-bin Section: misc Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Programs for double-array trie library Trie is a kind of digital search tree, an efficient indexing method with O(1) time complexity for searching. Comparably as efficient as hashing, trie also provides flexibility on incremental matching and key spelling manipulation. This makes it ideal for lexical analyzers, as well as spelling dictionaries. . This library is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. The details of the implementation can be found at http://linux.thai.net/~thep/datrie/datrie.html . This package contains the program files which is used with the library, including trietool, the trie manipulation tool. Package: libdatrie1 Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Double-array trie library This package provides shared libraries needed to run programs that use the datrie library. It is usually automatically installed. Package: libdatrie-doc Section: doc Architecture: all Multi-Arch: foreign Depends: lynx | www-browser, ${misc:Depends} Conflicts: libdatrie0-doc Description: Documentation files for double-array trie library Trie is a kind of digital search tree, an efficient indexing method with O(1) time complexity for searching. Comparably as efficient as hashing, trie also provides flexibility on incremental matching and key spelling manipulation. This makes it ideal for lexical analyzers, as well as spelling dictionaries. . This library is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. The details of the implementation can be found at http://linux.thai.net/~thep/datrie/datrie.html . This package contains some documents about the datrie library. debian/changelog0000644000000000000000000002773512263712472011064 0ustar libdatrie (0.2.8-1) unstable; urgency=medium * Imported Upstream version 0.2.8 * Run test suites after build * Declare libdatrie-dev M-A: same * Update copyright years * Bump Standards-Version to 3.9.5 (no changes) -- Theppitak Karoonboonyanan Fri, 10 Jan 2014 13:36:33 +0700 libdatrie (0.2.7.1-1) unstable; urgency=low * Use canonical anonscm URIs in Vcs-* fields. * Imported Upstream version 0.2.7 * Bump doxygen b-dep, as per upstream * d/libdatrie1.symbols: Updated according to upstream API change * Imported Upstream version 0.2.7.1 -- Theppitak Karoonboonyanan Tue, 22 Oct 2013 08:34:26 +0700 libdatrie (0.2.6-2) unstable; urgency=low * debian/watch: Watch upstream .tar.xz instead of .tar.gz. * Upload to unstable. -- Theppitak Karoonboonyanan Thu, 09 May 2013 09:41:45 +0700 libdatrie (0.2.6-1) experimental; urgency=low * Bump Standards-Version to 3.9.3 with changes - Update debian/copyright Format: URL to 'packaging-manuals' one. * Update copyright years * Imported Upstream version 0.2.6 * debian/libdatrie1.symbols: Updated as per upstream * debian/copyright: Update copyright years * Bump Standards-Version to 3.9.4 (no changes needed) * Build with xz compression -- Theppitak Karoonboonyanan Wed, 23 Jan 2013 17:46:32 +0700 libdatrie (0.2.5-3) unstable; urgency=low * Set Vcs-Git and Vcs-Browser to alioth * Point Homepage directly to linux.thai.net page * debian/control, debian/copyright: Apply wrap-and-sort -- Theppitak Karoonboonyanan Thu, 22 Dec 2011 13:03:09 +0700 libdatrie (0.2.5-2) unstable; urgency=low * debian/copyright: - Use non-forwarding format URL. Bump to revision 202. - Upstream license is actually LGPL-2.1, not 2.0. - Add extended text for LGPL-2.1 and GPL-2. * debian/rules: - Add back upstream 'make distclean' that was lost in 0.2.4-3, so it builds twice in a row again. -- Theppitak Karoonboonyanan Thu, 17 Nov 2011 15:44:58 +0700 libdatrie (0.2.5-1) unstable; urgency=low * New upstream release. * Use hardening build flags: - B-Dep on dpkg-dev (>= 0.16.1~) for dpkg-buildflags - Obtain build flags from dpkg-buildflags - Drop old CFLAGS & LDFLAGS, as now overridden by dpkg-buildflags -- Theppitak Karoonboonyanan Fri, 04 Nov 2011 16:03:41 +0700 libdatrie (0.2.4-3) unstable; urgency=low * Merge Ubuntu changes (build for multiarch) - Build-dep on debhelper (>= 8.1.3) - Add "Pre-Depends: ${misc:Pre-Depends}" for libdatrie1 - Add DEB_HOST_MULTIARCH and pass it to --libdir as a subdir under /usr/lib in configure - Replace /usr/lib/ with /usr/lib/*/ in {libdatrie1,libdatrie-dev}.install - Add "Multi-Arch: same" for libdatrie1 * Use dh-autoreconf instead of direct autoreconf call and manual cleanups - Build-dep on dh-autoreconf - Call dh_autoreconf on configure and dh_autoreconf_clean on clean * Bump Standards-Version to 3.9.2 (no changes needed) -- Theppitak Karoonboonyanan Sun, 19 Jun 2011 22:11:10 +0700 libdatrie (0.2.4-2ubuntu1) oneiric; urgency=low * Build for multiarch. -- Steve Langasek Sat, 26 Mar 2011 00:56:37 -0700 libdatrie (0.2.4-2) unstable; urgency=low * debian/copyright: - Updated to DEP-5 rev 173. - Update copyright year for debian/*. * debian/rules: - Drop unnecessary --infodir configure option. - Use short options -i/-a instead of --indep/--arch for dh_ commands. * Mark libdatrie-doc as "Multi-Arch: foreign" in preparation for multi-arch environment to come. This will satisfy Recommends from libdatrie-dev. * Bump Standards-Version to 3.9.1 (no changes needed) -- Theppitak Karoonboonyanan Sun, 13 Mar 2011 21:32:47 +0700 libdatrie (0.2.4-1) unstable; urgency=low * New upstream release - debian/libdatrie1.symbols: Add new symbols according to upstream. * Bump Standards-Version to 3.9.0 (no changes needed) -- Theppitak Karoonboonyanan Wed, 30 Jun 2010 16:40:33 +0700 libdatrie (0.2.3-1) unstable; urgency=low * New upstream release. * Bump Standards-Version to 3.8.4 (no changes needed) -- Theppitak Karoonboonyanan Sat, 27 Feb 2010 21:09:46 +0700 libdatrie (0.2.2-3) unstable; urgency=low * debian/rules: Fix failure to build twice in a row (Closes: #564815): - Fix typo '$(MAKE) maintainerclan' - Clean other changed files left over from 'make maintainer-clean' - 'config.status' depends on 'configure.ac' instead of 'configure' - Don't fail if m4/ already exists * Add missing ${misc:Depends} [lintian]. -- Theppitak Karoonboonyanan Wed, 13 Jan 2010 20:48:24 +0700 libdatrie (0.2.2-2) unstable; urgency=low * debian/control: - Update my e-mail address to @debian.org. - Drop DM-Upload-Allowed. * debian/copyright: - Update my e-mail address for debian/* to @debian.org. * debian/rules: - Run autoreconf instead of just updating config.{sub,guess}, as required by libtool - Run 'make maintainerclean' instead of 'make distclean' on clean target, to clear all autoconf-generated files * debian/control: - Build-Depends on libtool, automake, autoconf, for autoreconf. - Drop Build-Depends on autotools-dev * Switch to "3.0 (quilt)" source format. * Bump Standards-Version to 3.8.3 (no changes needed) -- Theppitak Karoonboonyanan Mon, 07 Dec 2009 12:40:05 +0700 libdatrie (0.2.2-1) unstable; urgency=low * Use complete sentences in libdatrie1 long description. (Closes: #525806) * New upstream release, fixing builds on non-GNU systems. * Remove duplicated field "section" for libdatrie1 [lintian]. -- Theppitak Karoonboonyanan Wed, 29 Apr 2009 15:24:31 +0700 libdatrie (0.2.1-2) unstable; urgency=low * Drop versioned b-dep on dpkg-dev, as Vcs-Cvs: is no more needed. * Upload to unstable. -- Theppitak Karoonboonyanan Sun, 12 Apr 2009 10:02:04 +0700 libdatrie (0.2.1-1) experimental; urgency=low * Fix broken Vcs-Browser field. * New upstream release, with symbols versioning added - debian/libdatrie0.symbols: Update symbols tags to "DATRIE_0.2" as per upstream. This is not considered ABI breakage, as unversioned calls are still resolved to the same symbols as versioned ones. -- Theppitak Karoonboonyanan Sun, 05 Apr 2009 14:42:01 +0700 libdatrie (0.2.0-1) experimental; urgency=low * VCS moved from CVS to SVN; update Vcs-* fields accordingly. * New upstream version, with ABI breakage - Rename binary packages according to SONAME change, to allow run-time coexistence with old version: libdatrie1, libdatrie1-bin - Rename libdatrie0-dev to libdatrie-dev, and conflicts with libdatrie0-dev, as both versions share the same headers location; this should be the package naming scheme from now on - Ditto to libdatrie-doc * Shared lib updates: - debian/rules: + Bump shlib dep to 0.2.0, and shlib package is now libdatrie1 - debian/libdatrie1.symbols: + Update symbols, setting minver to 0.2.0 for all symbols * Bump debhelper compat to level 7 - Bump debian/compat to 7 - Build-dep on debhelper (>= 7) - debian/rules: + Replace obsoleted 'dh_clean -k' with 'dh_prep' + Remove *-stamp clean-ups in clean target, as dh_clean now does it * debian/libdatrie-doc.docs: - Install README.migration provided by upstream * debian/copyright: - Update format to proposal rev 454 * Bump Standards-Version to 3.8.1 (no changes needed) -- Theppitak Karoonboonyanan Wed, 25 Mar 2009 14:43:36 +0700 libdatrie (0.1.3-2) unstable; urgency=low * Add Build-Depends-Package info to libdatrie0.symbols and bump dpkg-dev Build-deps to (>= 1.14.13) accordingly. Thanks Loïc Minier. * Fix CVSROOT in Vcs-Cvs, so it really works with debcheckout. * debian/libdatrie0-doc.doc-base: Correct doc-base section (Programming). * debian/rules: - Update config.{guess,status} before configure, and clean them up on clean target, so the changes are not included in .diff.gz - Use 'make -C $dir' instead of 'cd $dir; make' - Do not build/install doc on binary-arch * debian/copyright: - Remove inline license file referals, and use usual Debian text at the bottom instead - Update format to current proposal * debian/watch: Fix watch pattern so that only *.tar.gz is matched, not *.tar.gz.md5sum. * Use short description for libdatrie0, and add that it's usually auto-installed. * debian/control: - Add DM-Upload-Allowed - Bump Standards-Versions to 3.8.0 (no changes needed) -- Theppitak Karoonboonyanan Sat, 21 Jun 2008 11:39:32 +0700 libdatrie (0.1.3-1) unstable; urgency=low * New upstream release - Fix memory bug which can crash on some platforms, reportedly win32. - Fix symbols exporting, so it builds on Mac. - Remove excessive documentation for private API's. - Add the SBM file format documentation frequently asked for * debian/copyright: Rewrite in machine-interpretable format. * Remove XS- prefix from XS-Vcs-* fields. * Move Homepage info from description to control field. * Bump Standards-Version to 3.7.3, no changes needed. * debian/libdatrie0.symbols: Add symbols file to provide fine-grained shlib dependency tracking. * debian/control: Build-depend on debhelper (>= 5.0.61) and dpkg-dev (>= 1.14.9) for the required dh_makeshlibs version. * debian/libdatrie0-doc.doc-base: Remove excessive whitespace. (lintian) -- Theppitak Karoonboonyanan Mon, 28 Jan 2008 17:19:12 +0700 libdatrie (0.1.2-2) unstable; urgency=low * Do not install functions man pages for now, to avoid messing man directories with plenty of doxygen-generated pages, and to avoid conflicts with other packages. -- Theppitak Karoonboonyanan Sat, 25 Aug 2007 17:11:23 +0700 libdatrie (0.1.2-1) unstable; urgency=low * debian/libdatrie-bin.manpages: - Install man pages from built directory, rather than from source. * debian/libdatrie0-dev.manpages: - Added to install doxygen-generated API man pages. * New upstream release - Limited symbols export, to avoid name clashing - Improved error handling for edge cases - Fix crashes * Set shlibs to >= 0.1.2. * Add XS-Vcs-Cvs and XS-Vcs-Browser info. * Do not ignore 'make clean' error. -- Theppitak Karoonboonyanan Sat, 25 Aug 2007 14:56:20 +0700 libdatrie (0.1.1-4) unstable; urgency=low * debian/rules: Revert manual calls to doxygen and rely on configure auto-detection. Doxygen shouldn't be found in arch buildd's now, as we had moved it to Build-Depends-Indep. Thanks to Loïc Minier for suggestion. -- Theppitak Karoonboonyanan Mon, 11 Dec 2006 09:51:26 +0700 libdatrie (0.1.1-3) unstable; urgency=low * Package sponsored by Loïc Minier. * Split arch and indep builds completely - debian/control: move doxygen to Build-Depends-Indep. - debian/rules: disable doxygen and manually call it on indep targets. * debian/rules adjustments - Remove unused shared library version info assignment. - Pass --host=$(DEB_HOST_GNU_TYPE) to configure only when cross compiling. - Add missing targets in .PHONY * debian/*.dirs: Removed, not needed for debhelper compat level 5. * debian/copyright: Change the download place to match that in watch file. -- Theppitak Karoonboonyanan Sun, 10 Dec 2006 17:02:24 +0700 libdatrie (0.1.1-2) unstable; urgency=low * Split binary program to libdatrie-bin. * Rename libdatrie-{dev,doc} to libdatrie0-{dev,doc}. -- Theppitak Karoonboonyanan Wed, 18 Oct 2006 00:17:08 +0700 libdatrie (0.1.1-1) unstable; urgency=low * Initial release (Closes: #392315) -- Theppitak Karoonboonyanan Thu, 12 Oct 2006 15:27:50 +0700 debian/libdatrie1-bin.manpages0000644000000000000000000000004012263712472013471 0ustar debian/tmp/usr/share/man/man1/* debian/watch0000644000000000000000000000017112263712472010224 0ustar version=3 opts=pasv ftp://linux.thai.net/pub/thailinux/software/libthai/libdatrie-([\d+\.]+|\d+)\.tar\.xz debian uupdate debian/copyright0000644000000000000000000000410712263712472011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: libdatrie Upstream-Contact: Theppitak Karoonboonyanan Source: ftp://linux.thai.net/pub/thailinux/software/libthai/ Files: * Copyright: 2006-2014 Theppitak Karoonboonyanan License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU Lesser General Public License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. Files: debian/* Copyright: 2006-2014 Theppitak Karoonboonyanan License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. debian/libdatrie1-bin.install0000644000000000000000000000001212263712472013343 0ustar usr/bin/*