mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
28 lines
637 B
Bash
28 lines
637 B
Bash
# $Id: PKGBUILD 60177 2009-12-01 17:36:38Z giovanni $
|
|
# Maintainer: tobias <tobias@archlinux.org>
|
|
# Contributor: Sarah Hay <sarah@archlinux.org>
|
|
|
|
pkgname=xvidcore
|
|
pkgver=1.3.3
|
|
pkgrel=1
|
|
pkgdesc="XviD is an open source MPEG-4 video codec"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.xvid.org/"
|
|
depends=('glibc')
|
|
makedepends=('nasm')
|
|
source=("http://downloads.xvid.org/downloads/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('f0a77572ac4694038e8519726b2883d9')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}/build/generic"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}/build/generic"
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|