diff options
Diffstat (limited to 'testing/libva-utils/APKBUILD')
-rw-r--r-- | testing/libva-utils/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/testing/libva-utils/APKBUILD b/testing/libva-utils/APKBUILD index 64a50fd14a..34b074a53b 100644 --- a/testing/libva-utils/APKBUILD +++ b/testing/libva-utils/APKBUILD @@ -7,13 +7,11 @@ pkgdesc="Intel VA-API Media Applications and Scripts for libva" url="https://github.com/01org/libva-utils" arch="all" license="MIT" -makedepends="mesa-dev libva-dev autoconf automake libtool libva-dev" +makedepends="mesa-dev libva-dev autoconf automake libtool" source="https://github.com/01org/libva-utils/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2" options="!check" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" ./autogen.sh \ --build=$CBUILD \ --host=$CHOST \ @@ -26,13 +24,11 @@ build() { make } -check(){ - cd "$builddir" +check() { make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |