mirror of
https://github.com/archlinux/aur.git
synced 2026-02-03 22:10:53 +01:00
Error fix.
This commit is contained in:
parent
1abc379808
commit
eae55b46f4
1 changed files with 4 additions and 4 deletions
8
PKGBUILD
8
PKGBUILD
|
|
@ -44,11 +44,11 @@ package()
|
|||
done
|
||||
|
||||
cp -r "${srcdir}"/"${pkgname}"-"${pkgver}"/lib/ "${pkgdir}"/opt/"${pkgname}"/
|
||||
find "${pkgdir}"/opt/"${pkgname}"/lib/ -exec chmod 755 {} + -type d
|
||||
find "${pkgdir}"/opt/"${pkgname}"/lib/ -exec chmod 644 {} + -type f
|
||||
find "${pkgdir}"/opt/"${pkgname}"/lib/ -type d -exec chmod 755 {} +
|
||||
find "${pkgdir}"/opt/"${pkgname}"/lib/ -type f -exec chmod 644 {} +
|
||||
|
||||
# Install the documentation.
|
||||
cp -r "${srcdir}"/"${pkgname}"-"${pkgver}"/docs/* "${pkgdir}"/usr/share/doc/"${pkgname}"/
|
||||
find "${pkgdir}"/usr/share/doc/"${pkgname}"/ -exec chmod 755 {} + -type d
|
||||
find "${pkgdir}"/usr/share/doc/"${pkgname}"/ -exec chmod 644 {} + -type f
|
||||
find "${pkgdir}"/usr/share/doc/"${pkgname}"/ -type d -exec chmod 755 {} +
|
||||
find "${pkgdir}"/usr/share/doc/"${pkgname}"/ -type f -exec chmod 644 {} +
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue