blob: 14d471b66dd9eea68cd5d2a7296e824f054c6ce2 (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=vorbis-tools-git
pkgver=r936.134b784
pkgrel=2
pkgdesc="Command-line tools for creating and playing Ogg Vorbis files"
arch=('i686' 'x86_64')
url="https://xiph.org/vorbis/"
license=('GPL')
depends=('curl' 'flac' 'libao' 'libvorbis')
makedepends=('git')
provides=('vorbis-tools')
conflicts=('vorbis-tools')
source=("git+https://gitlab.xiph.org/xiph/vorbis-tools.git")
sha256sums=('SKIP')
pkgver() {
cd "vorbis-tools"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "vorbis-tools"
./autogen.sh
./configure \
--prefix="/usr"
make
}
package() {
cd "vorbis-tools"
make DESTDIR="$pkgdir" install
}
|