From bc0c3bd7cfa15f3fa521634b2be18fcf7a25ace8 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 11 Dec 2013 13:37:24 +0000 Subject: [PATCH] main/libvpx: fix permissions --- main/libvpx/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main/libvpx/APKBUILD b/main/libvpx/APKBUILD index 5b4e5d66df6..660926ae71b 100644 --- a/main/libvpx/APKBUILD +++ b/main/libvpx/APKBUILD @@ -2,7 +2,7 @@ pkgname=libvpx pkgver=1.3.0 _ver=${pkgver/_/-} -pkgrel=1 +pkgrel=2 pkgdesc="Library for the vp8 codec" url="http://www.webmproject.org/" arch="all" @@ -42,7 +42,8 @@ build() { package() { cd "$_builddir" make DIST_DIR="$pkgdir"/usr install - chmod 644 "$pkgdir"/usr/include/vpx/*.h || return 1 + chmod 644 "$pkgdir"/usr/include/vpx/*.h \ + "$pkgdir"/usr/lib/pkgconfig/* || return 1 chown root:root -R "$pkgdir" || return 1 chmod 755 "$pkgdir"/usr/lib/* || return 1 }