summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2b76372127b8dd63fe2a22bd874d8bc21248653b (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
35
# Maintainer: Kyle <kyle@free2.ml>
pkgname=opus-tools-git
_gitname=opus-tools
pkgver=0.2.13.g6c758c0 # determined from git origin
pkgrel=1
pkgdesc="A collection of tools for working with opus files (git version)"
arch=('aarch64' 'armv6h' 'armv7h' 'i686' 'x86_64')
url="http://wiki.xiph.org/Opus-tools"
license=('BSD')
depends=('flac' 'libogg' 'opus' 'opusfile' 'libopusenc')
makedepends=('git')
provides=(opus-tools)
conflicts=(opus-tools)
source=('git+https://gitlab.xiph.org/xiph/opus-tools.git')
md5sums=('SKIP')

pkgver() {
  cd $_gitname
  # Use the tag of the last commit
  git describe --always | sed -e 's|v||' -e 's|-|.|g'
}

build() {
  cd $_gitname
  ./autogen.sh
  ./configure --prefix=/usr
  make
}

package() {
  cd $_gitname
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: