#xm #sys #fast-tracker #libxm

yanked libxm-sys

Raw libxm bindings for Rust

Uses old Rust 2015

0.0.2 Feb 12, 2015
0.0.1 Feb 10, 2015

#8 in #xm

36 downloads per month

WTFPL license

59KB
1.5K SLoC

C 1.5K SLoC // 0.1% comments Rust 64 SLoC

libxm-rs

Build Status

A binding of libxm for Rust.

A small XM (FastTracker II Extended Module) player library. Designed for easy integration in demos and such, and provides timing functions for easy sync against specific instruments, samples or channels.

As with libxm, this library is released under the WTFPL license.

Documentation: https://nukep.github.io/libxm-rs/libxm

Build requirements

libxm-rs is ready to use with Rust 1.0 stable, and should be up to date with the nightly builds.

If libxm is built locally (this is the default!), you must have a C compiler on your system that supports the C11 standard (such as GCC 4.7+ or clang 3.1). If you don't wish to build locally, a shared library that you have pre-built can be provided by following the steps below.

Linking to a shared version of libxm

By default, libxm-rs statically links and compiles libxm. This is to allow users to get started with the library more quickly.

If you wish to provide your own shared or custom version of libxm, you can override the build step for xm in a .cargo/config file (see http://doc.crates.io/build-script.html#overriding-build-scripts).

[target.x86_64-unknown-linux-gnu.xm]
rustc-flags = "-l xm"

Dependencies