Package Details: flucoma-cli 1.0.0.RC1b-1

Git Clone URL: https://aur.archlinux.org/flucoma-cli.git (read-only, click to copy)
Package Base: flucoma-cli
Description: Fluid Corpus Manipulation Command line interface
Upstream URL: https://www.flucoma.org/
Keywords: analysis audio feature-extraction synthesis
Licenses: BSD
Conflicts: flucoma-cli-git
Provides: flucoma-cli
Submitter: madskjeldgaard
Maintainer: None
Last Packager: madskjeldgaard
Votes: 1
Popularity: 0.000000
First Submitted: 2020-09-04 17:04 (UTC)
Last Updated: 2021-06-07 16:34 (UTC)

Latest Comments

paum commented on 2025-01-10 16:50 (UTC) (edited on 2025-01-10 16:53 (UTC) by paum)

Here is the updated PKGBUILD for the 1.0.8 version.

# Maintainer: Mads Kjeldgaard <mail@madskjeldgaard.dk>
pkgname=flucoma-cli
pkgver=1.0.8
pkgrel=1
pkgdesc="Fluid Corpus Manipulation Command line interface"
arch=('x86_64')
url="https://www.flucoma.org/"
license=('BSD')
depends=()
makedepends=()
optdepends=()
provides=("${pkgname}")
conflicts=("flucoma-cli-git")
options=()
_file_name="FluCoMa-CLI-Linux.tar.gz"
source=("https://github.com/flucoma/flucoma-cli/releases/download/$pkgver/$_file_name")
md5sums=('51f993909f6efc9737fcf13f11fa890a')

package() {

    cd "$srcdir/FluidCorpusManipulation"

    # Install binaries
    for F in $(ls bin); do install -Dm755 "bin/$F"  "$pkgdir/usr/bin/$F"; done

    # Install docs
    for F in $(ls docs); do install -Dm755 "docs/$F"  "$pkgdir/usr/share/doc/$pkgname/$F"; done

    install -Dm644 ./LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}