main/libebml: modernise, note lack of test, fix license

This commit is contained in:
A. Wilcox 2018-04-05 16:36:27 -05:00 committed by Timo Teräs
parent b637b6ce93
commit 588a44675e

View File

@ -2,43 +2,28 @@
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=libebml
pkgver=1.3.5
pkgrel=0
pkgdesc="a C++ library to parse Extensible Binary Meta-Language files"
pkgrel=1
pkgdesc="C++ library to parse Extensible Binary Meta-Language files"
url="https://www.matroska.org/"
arch="all"
license="LGPL"
depends=""
depends_dev=""
makedepends="$depends_dev"
install=""
options="!check" # No test suite.
license="LGPL-2.1+"
depends=
subpackages="$pkgname-dev"
source="http://dl.matroska.org/downloads/$pkgname/$pkgname-$pkgver.tar.xz"
options="!check"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--disable-static \
|| return 1
make || return
--disable-static
make
}
package() {
cd "$_builddir"
cd "$builddir"
make install DESTDIR="$pkgdir"
}