desktop/mediainfo/PKGBUILD

31 lines
778 B
Bash
Raw Normal View History

2018-03-25 21:27:01 +08:00
# Contributions from Arch:
# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: hydro <hydro@freenet.de>
2018-03-25 21:27:01 +08:00
pkgname=mediainfo
pkgver=18.03
2017-07-03 19:34:37 +08:00
pkgrel=1
2018-03-25 21:27:01 +08:00
pkgdesc="supplies technical and tag information about a video or audio file"
url="https://mediaarea.net"
arch=('x86_64')
license=('GPL')
2018-03-25 21:27:01 +08:00
depends=('libmediainfo')
makedepends=('libtool' 'automake' 'autoconf')
2018-03-25 21:27:01 +08:00
source=(https://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.xz)
sha256sums=('c1fa4ef50c99081350d0efb00e6c1fb2e196872a321cd2e1f27f516371d83d9c')
build() {
2018-03-25 21:27:01 +08:00
cd MediaInfo/Project/GNU/CLI
2017-03-29 06:19:06 +08:00
2018-03-25 21:27:01 +08:00
sh ./autogen.sh
./configure --prefix=/usr
2017-03-29 06:19:06 +08:00
2018-03-25 21:27:01 +08:00
make
}
2018-03-25 21:27:01 +08:00
package() {
cd MediaInfo/Project/GNU/CLI
2017-03-29 06:19:06 +08:00
make DESTDIR="$pkgdir" install
}