mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/mediainfo: new aport
https://mediaarea.net/en/MediaInfo Supplies technical and tag information about a video or audio file (CLI)
This commit is contained in:
parent
82823b5509
commit
ac4fcfa93a
47
testing/mediainfo/APKBUILD
Normal file
47
testing/mediainfo/APKBUILD
Normal file
@ -0,0 +1,47 @@
|
||||
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
||||
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
||||
pkgname=mediainfo
|
||||
pkgver=0.7.99
|
||||
pkgrel=0
|
||||
pkgdesc="Supplies technical and tag information about a video or audio file (CLI)"
|
||||
url="https://mediaarea.net/en/MediaInfo"
|
||||
arch="all"
|
||||
license="BSD"
|
||||
makedepends="automake autoconf cmake libmediainfo-dev>=$pkgver libtool libzen-dev"
|
||||
source="https://mediaarea.net/download/source/$pkgname/$pkgver/${pkgname}_$pkgver.tar.bz2"
|
||||
builddir="$srcdir/MediaInfo"
|
||||
_clidir="$builddir/Project/GNU/CLI"
|
||||
|
||||
prepare() {
|
||||
default_prepare
|
||||
|
||||
rm -Rf "$builddir"/Project/MS*
|
||||
|
||||
cd "$_clidir"
|
||||
./autogen.sh
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_clidir"
|
||||
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--enable-static=no
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$_clidir"
|
||||
./mediainfo --version
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_clidir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
sha512sums="88f3b897e36bf5d9a28f96537da93a7c1e01828b014c0e07c41ae646f3a2c6a9cae187c5a77e529e8b7246cd04665eb3c9a0b8e9bbd3eb365f083f3696258cab mediainfo_0.7.99.tar.bz2"
|
Loading…
Reference in New Issue
Block a user