summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 80f0d8a37b2a79451d8fa1b1bca726342dca6f2b (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
36
37
38
39
40
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=libopusenc-git
pkgver=0.1.1.r0.gb37719f
pkgrel=1
pkgdesc="High-level API for encoding .opus files"
arch=('i686' 'x86_64')
url="https://opus-codec.org/"
license=('BSD')
depends=('glibc' 'opus')
makedepends=('git')
provides=('libopusenc')
conflicts=('libopusenc')
options=('staticlibs')
source=("git+https://git.xiph.org/libopusenc.git")
sha256sums=('SKIP')


pkgver() {
  cd "libopusenc"

  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "libopusenc"

  ./autogen.sh
  ./configure --prefix="/usr"
  make
}

package() {
  cd "libopusenc"

  make DESTDIR="$pkgdir" install

  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/libopusenc/COPYING"
  rm "$pkgdir/usr/share/doc/libopusenc/COPYING"
}