extra/libvpx: fix v7 stupidity

This commit is contained in:
Kevin Mihelich 2013-05-12 00:07:37 +00:00
parent 0f1ec8a2a5
commit c5cb605d6f

View file

@ -3,7 +3,8 @@
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org> # ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - configure option --enable-shared isn't supported for us # - configure option --enable-shared isn't supported for us
# - patch to revert stupidity of those who think arm is always cross-compiled # - patch to revert stupidity: forced cross compiling, forced cflags
# - disable neon
pkgname=libvpx pkgname=libvpx
pkgver=1.2.0 pkgver=1.2.0
@ -18,7 +19,7 @@ source=(http://mirrors.kernel.org/archlinux/other/libvpx/libvpx-$pkgver.tar.xz{,
no-cross.patch) no-cross.patch)
sha1sums=('75cd953cf2db694412569272803fbdc73f2b599f' sha1sums=('75cd953cf2db694412569272803fbdc73f2b599f'
'SKIP' 'SKIP'
'de7c8bb121d08f719f5cbbe94e7e37c24f1090b8') '9677138685ef36cbb9f2be1a586324b54fab9400')
build() { build() {
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"
@ -27,7 +28,7 @@ build() {
--enable-postproc \ --enable-postproc \
--enable-pic \ --enable-pic \
--disable-install-docs \ --disable-install-docs \
--disable-install-srcs --disable-install-srcs --disable-neon
make make
} }