diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 19:14:37 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 19:14:37 +0000 |
commit | 5066b1161100cbde4942b21d52d60284d560c380 (patch) | |
tree | d2a50434142248c3b6157075a1c529b7479c7fdf /main/x264 | |
parent | bd8f1f4778cbce936d1a9cc782b6cdf172081456 (diff) | |
download | aports-5066b1161100cbde4942b21d52d60284d560c380.tar.bz2 aports-5066b1161100cbde4942b21d52d60284d560c380.tar.xz |
main/x264: fix makedepends, and configure (not autotools)
Diffstat (limited to 'main/x264')
-rw-r--r-- | main/x264/APKBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/main/x264/APKBUILD b/main/x264/APKBUILD index 663404e560..c24cb67ff8 100644 --- a/main/x264/APKBUILD +++ b/main/x264/APKBUILD @@ -7,18 +7,17 @@ url="http://www.videolan.org/developers/x264.html" arch="all" license="GPL" depends= -makedepends="libx11-dev bash yasm" +makedepends="libx11-dev bash yasm coreutils" subpackages="$pkgname-dev" source="ftp://ftp.videolan.org/pub/x264/snapshots/x264-snapshot-$pkgver-2245-stable.tar.bz2" + _builddir="$srcdir/$pkgname-snapshot-$pkgver-2245-stable" build() { cd "$_builddir" local _asmopts= - if [ "$CARCH" = "x86" ]; then - _asmopts="--disable-asm" - fi + [ "$CARCH" = "x86" ] && _asmopts="--disable-asm" + # note: not autotools ./configure \ - --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ --enable-visualize \ |