mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
951 B
Bash
44 lines
951 B
Bash
# $Id: PKGBUILD 149275 2012-02-06 17:33:29Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - configure needs --disable-asm to build on ARM
|
|
|
|
pkgname=x264
|
|
pkgver=20130702
|
|
pkgrel=2
|
|
pkgdesc="free library for encoding H264/AVC video streams"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.videolan.org/developers/x264.html"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
makedepends=('yasm' 'git')
|
|
source=(git://git.videolan.org/x264.git#commit=585324fee3)
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git log -1 --format="%cd" --date=short | sed 's|-||g'
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
./configure --disable-asm --enable-shared \
|
|
--enable-pic
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
|
|
make DESTDIR="$pkgdir" \
|
|
bindir=/usr/bin \
|
|
libdir=/usr/lib \
|
|
includedir=/usr/include \
|
|
install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|