blob: 6b4cfa8050a07fde57f2f7fefbd3e5ceb5e8337f (
plain)
1 # Description: A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.
2 # URL: https://mkvtoolnix.download/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Brett Goulder, predatorfreak at dcaf-security dot org.
5
6 name=libebml
7 version=1.3.4
8 release=1
9 source=(https://mkvtoolnix.download/sources/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make prefix=$PKG/usr install
18 }
|