mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:04:36 +08:00
24 lines
498 B
Bash
24 lines
498 B
Bash
pkgname=libebml
|
|
pkgver=1.3.5
|
|
pkgrel=2
|
|
pkgdesc="Extensible Binary Meta Language library"
|
|
arch=('x86_64')
|
|
url="http://dl.matroska.org/downloads/libebml/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
source=("https://dl.matroska.org/downloads/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('f1e8c8e4664abb9f51483ff95019eeed')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make prefix="${pkgdir}/usr" install
|
|
}
|