mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 01:07:15 +08:00
26 lines
600 B
Bash
26 lines
600 B
Bash
# Contributor: abveritas[at]chakra-project[dot]org>
|
|
# Maintainer: BrLi <rainman59118[at]Gmail.com>
|
|
|
|
pkgname=libebml
|
|
pkgver=1.3.0
|
|
pkgrel=2
|
|
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
|
|
}
|