blob: b62fa3a6ab3b135f6d59e86abcdd9834e6be0aeb (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=libdvbpsi-git
pkgver=1.3.0.r262.gd3792da
pkgrel=1
pkgdesc="A library designed for decoding and generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818 and ITU-T H.222.0"
arch=('i686' 'x86_64')
url="https://www.videolan.org/developers/libdvbpsi.html"
license=('LGPL2')
depends=('glibc')
makedepends=('git')
provides=("libdvbpsi=$pkgver")
conflicts=('libdvbpsi')
options=('staticlibs')
source=("git+https://code.videolan.org/videolan/libdvbpsi.git")
sha256sums=('SKIP')
pkgver() {
cd "libdvbpsi"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "libdvbpsi"
./bootstrap
./configure \
--prefix="/usr" \
--enable-release
make
}
package() {
cd "libdvbpsi"
make DESTDIR="$pkgdir" install
}
|