mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:47:15 +08:00
31 lines
778 B
Bash
31 lines
778 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: hydro <hydro@freenet.de>
|
|
|
|
pkgname=mediainfo
|
|
pkgver=18.03
|
|
pkgrel=1
|
|
pkgdesc="supplies technical and tag information about a video or audio file"
|
|
url="https://mediaarea.net"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('libmediainfo')
|
|
makedepends=('libtool' 'automake' 'autoconf')
|
|
source=(https://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.xz)
|
|
sha256sums=('c1fa4ef50c99081350d0efb00e6c1fb2e196872a321cd2e1f27f516371d83d9c')
|
|
|
|
build() {
|
|
cd MediaInfo/Project/GNU/CLI
|
|
|
|
sh ./autogen.sh
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd MediaInfo/Project/GNU/CLI
|
|
make DESTDIR="$pkgdir" install
|
|
}
|