summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ff949f490e42c75ac346c8e1c0304503a26d2d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Gabriel Magno <gabrielmagno1@gmail.com>

_pkgname=spectro
pkgname=spectro-git
pkgver=r48.1714c5a
pkgrel=1
pkgdesc="Provides BBCode formatted text with the spectrograms of audio files."

arch=('any')
url="https://github.com/welpo/spectro"
license=('GPL3')

depends=('sox' 'curl')
optdepends=('ffmpeg: to process ape, WMA, MP4 and AAC files'
            'imagemagick: to use the --compare feature'
            'optipng: to optimise the spectrograms'
            'perl: to include the file SHA on the output (shasum)')

source=("git+https://github.com/welpo/spectro.git")
sha256sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "$_pkgname"
}

package() {
  cd "$_pkgname"
  install -Dm755 "spectro" "$pkgdir/usr/bin/spectro"
}