mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Merge pull request #108 from herrernst/cargo-deb
add some fields to Cargo manifest so debian package can be build easily with `cargo-deb`
This commit is contained in:
commit
85002e1e2a
1 changed files with 21 additions and 0 deletions
21
Cargo.toml
21
Cargo.toml
|
@ -3,6 +3,11 @@ name = "librespot"
|
|||
version = "0.1.0"
|
||||
authors = ["Paul Liétar <paul@lietar.net>"]
|
||||
build = "build.rs"
|
||||
license = "MIT"
|
||||
description = "Open Source Spotify client library"
|
||||
keywords = ["spotify"]
|
||||
repository = "https://github.com/plietar/librespot"
|
||||
readme = "README.md"
|
||||
|
||||
[lib]
|
||||
name = "librespot"
|
||||
|
@ -70,3 +75,19 @@ facebook = ["hyper/ssl", "openssl"]
|
|||
portaudio-backend = ["portaudio"]
|
||||
pulseaudio-backend= ["libpulse-sys"]
|
||||
default = ["with-syntex", "portaudio-backend"]
|
||||
|
||||
[package.metadata.deb]
|
||||
maintainer = "nobody"
|
||||
copyright = "2016 Paul Liétar"
|
||||
license_file = ["LICENSE", "4"]
|
||||
depends = "$auto"
|
||||
extended_description = """\
|
||||
librespot is an open source client library for Spotify. It enables applications \
|
||||
to use Spotify's service, without using the official but closed-source \
|
||||
libspotify. Additionally, it will provide extra features which are not \
|
||||
available in the official library."""
|
||||
section = "sound"
|
||||
priority = "optional"
|
||||
assets = [
|
||||
["target/release/librespot", "usr/bin/", "755"]
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue