blob: 5e607f79deb36e6bb62abbd819992f1a602f818b (
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
41
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=libmatroska-git
pkgver=1.7.0.r11.g7e61e84
pkgrel=1
pkgdesc="C++ libary to parse Matroska files"
arch=('i686' 'x86_64')
url="https://matroska.org/index.html"
license=('LGPL')
depends=('glibc' 'libebml.so')
makedepends=('git' 'cmake')
provides=("libmatroska=$pkgver" 'libmatroska.so')
conflicts=('libmatroska')
source=("git+https://github.com/Matroska-Org/libmatroska.git")
sha256sums=('SKIP')
pkgver() {
cd "libmatroska"
git describe --long --tags | sed 's/^release-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "libmatroska"
cmake \
-B "_build" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_INSTALL_LIBDIR="lib" \
-DBUILD_SHARED_LIBS=ON \
./
make -C "_build"
}
package() {
cd "libmatroska"
make -C "_build" DESTDIR="$pkgdir" install
}
|