2010-12-12 19:04:40 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=libebml
|
2010-12-12 19:04:40 +08:00
|
|
|
pkgver=1.0.0
|
|
|
|
pkgrel=1
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgdesc="Extensible Binary Meta Language library"
|
|
|
|
arch=('i686' '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)
|
2010-12-12 19:04:40 +08:00
|
|
|
md5sums=('6d438f03d8928d83a2d120ed02705f03')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}/make/linux"
|
|
|
|
|
|
|
|
make || return 1
|
|
|
|
make prefix="${pkgdir}/usr" install || return 1
|
|
|
|
}
|