diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libebml |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libebml')
-rw-r--r-- | extra/libebml/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/libebml/PKGBUILD b/extra/libebml/PKGBUILD new file mode 100644 index 000000000..2367625e5 --- /dev/null +++ b/extra/libebml/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 108561 2011-02-01 17:18:01Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: 03/08/04 <lefungus@altern.org> + +pkgname=libebml +pkgver=1.2.0 +pkgrel=1 +pkgdesc="Extensible Binary Meta Language library" +arch=('i686' 'x86_64') +url="http://dl.matroska.org/downloads/libebml/" +license=('LGPL') +depends=('gcc-libs') +source=("${url}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('26fbaa556bb497c1134d33b84ab34443') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}/make/linux" + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/make/linux" + make prefix="${pkgdir}/usr" install || return 1 +} |