blob: 27feb1a00b28923c6b3a1fa523821c7cf38cccd2 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Corey Oliver <corey.jon.oliver@gmail.com>
# Bundled libraries used in the package:
#
# Name | License | Location
# -------------+---------------+---------
# aes-gladman | custom / GPL | Source/ThirdParty/aes-gladman
# base64 | unknown | Source/ThirdParty/base64
# hmac-gladman | custom / GPL | Source/ThirdParty/hmac-gladman
# md5 | Public domain | Source/ThirdParty/md5
# sha1-gladman | custom / GPL | Source/ThirdParty/sha1-gladman
# sha2-gladman | custom / GPL | Source/ThirdParty/sha2-gladman
pkgname=libmediainfo
pkgver=0.7.99
pkgrel=1
pkgdesc="A shared library for mediainfo"
url="https://github.com/MediaArea/MediaInfoLib"
arch="all"
license="BSD custom"
depends_dev="zlib-dev"
makedepends="$depends_dev cmake curl-dev libmms-dev libzen-dev tinyxml2-dev"
subpackages="$pkgname-dev"
source="https://mediaarea.net/download/source/$pkgname/$pkgver/${pkgname}_$pkgver.tar.gz"
builddir="$srcdir/MediaInfoLib"
_cmakedir="$builddir/Project/CMake"
options="!check" # upstream does not provide tests
prepare() {
default_prepare
cd "$builddir"
rm -rf Project/MS*
# Make sure that these bundled libs are not used.
rm -R Project/zlib
rm -R Source/ThirdParty/tinyxml2
}
build() {
cd "$_cmakedir"
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DBUILD_SHARED_LIBS=ON
make
}
package() {
cd "$_cmakedir"
make DESTDIR="$pkgdir" install
}
sha512sums="03da832068d633c4186f0049d84aa0a442c6a82e371b7bddb5b632a5799fcd0be265cf53232cc18d1aa165707618fb03d49dea76627e15c07f9b2310bbcf30c7 libmediainfo_0.7.99.tar.gz"
|