mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
25 lines
552 B
Bash
25 lines
552 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libebml
|
|
pkgver=1.3.0
|
|
pkgrel=1
|
|
pkgdesc="Extensible Binary Meta Language library"
|
|
arch=('x86_64')
|
|
url="http://dl.matroska.org/downloads/libebml/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('efec729bf5a51e649e1d9d1f61c0ae7a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/make/linux"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/make/linux"
|
|
|
|
make prefix="${pkgdir}/usr" install
|
|
}
|