mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 20:47:13 +08:00
22 lines
621 B
Bash
22 lines
621 B
Bash
# $Id: PKGBUILD 68003 2010-02-10 12:53:26Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: 03/08/04 <lefungus@altern.org>
|
|
|
|
pkgname=libebml
|
|
pkgver=0.7.8
|
|
pkgrel=2
|
|
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)
|
|
md5sums=('6278109f52e4f9d2c8a8dfc0d668b587')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/make/linux"
|
|
|
|
make || return 1
|
|
make prefix="${pkgdir}/usr" install || return 1
|
|
}
|