mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
main/libebml: modernise, note lack of test, fix license
This commit is contained in:
parent
b637b6ce93
commit
588a44675e
@ -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"
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user