═══════════════════════════════════════════════════════════════════════════════
LinuxCNC DB Tool - Source Distribution
Version 1.0.0
═══════════════════════════════════════════════════════════════════════════════

CONTENTS:
---------
  linuxcnc-db-tool-build/    - Source code directory
    ├── db_tool.c            - Main daemon (interfaces with LinuxCNC)
    ├── db_tool_manager.c    - GTK3 GUI manager/editor
    ├── Makefile             - Build configuration
    └── INSTALLATION_GUIDE.txt - Installation instructions

  build-debian-package.sh    - Automated debian package builder
  README.txt                 - This file
  QUICK_START.txt            - Quick start guide

QUICK START:
------------
1. Extract this archive:
   tar -xzf linuxcnc-db-tool-1.0.0-source.tar.gz
   cd linuxcnc-db-tool-1.0.0-source

2. Build the debian package:
   ./build-debian-package.sh

3. Install the package:
   sudo dpkg -i linuxcnc-db-tool_1.0.0_amd64.deb

DEPENDENCIES:
-------------
  Build dependencies:
    - gcc
    - make
    - libgtk-3-dev
    - pkg-config

  Runtime dependencies:
    - LinuxCNC (2.8 or later)
    - libgtk-3-0

MANUAL BUILD:
-------------
If you prefer to build manually without creating a .deb package:

  cd linuxcnc-db-tool-build
  make all
  sudo make install

This will compile and install the binaries to /usr/local/bin/

DOCUMENTATION:
--------------
See linuxcnc-db-tool-build/INSTALLATION_GUIDE.txt for detailed installation
and configuration instructions.

FEATURES:
---------
  • Real-time tool tracking with usage statistics
  • GTK3 graphical interface for tool management
  • Custom tool types and UIDs for inventory tracking
  • Tool retirement history with detailed statistics
  • Automatic GUI launch on LinuxCNC startup
  • CSV export of tool data and history
  • Thread-safe concurrent access protection
  • G1/G2/G3-specific cutting time tracking

SUPPORT:
--------
For issues, questions, or contributions:
  GitHub: https://github.com/anthropics/claude-code/issues

LICENSE:
--------
[Your license information here]

═══════════════════════════════════════════════════════════════════════════════
