diff options
author | Kostis Karantias | 2018-12-19 16:35:45 +0200 |
---|---|---|
committer | Kostis Karantias | 2018-12-19 16:35:45 +0200 |
commit | 3242957eeac7522b73313f809e6462fb84c21a47 (patch) | |
tree | a4aea3e375a18725c43754e953bd115fdf3cb8e9 | |
parent | cc246b00ad404348920cb99356b16fa241d4639f (diff) | |
download | packages-3242957eeac7522b73313f809e6462fb84c21a47.tar.gz packages-3242957eeac7522b73313f809e6462fb84c21a47.tar.bz2 packages-3242957eeac7522b73313f809e6462fb84c21a47.zip |
move library files to /usr/lib
-rw-r--r-- | PKGBUILD | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -44,6 +44,13 @@ package() { | |||
44 | # Remove makepkg-created symlinks before copying content | 44 | # Remove makepkg-created symlinks before copying content |
45 | rm *.tar.xz *.desktop | 45 | rm *.tar.xz *.desktop |
46 | 46 | ||
47 | # Move library files to /usr/lib/popcorntime | ||
48 | install -d "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" | ||
49 | mv "${srcdir}"/lib/* "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" | ||
50 | rmdir "${srcdir}"/lib/ | ||
51 | install -d "${pkgdir}/etc/ld.so.conf.d" | ||
52 | echo "/usr/lib/${_pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${_pkgname}.conf" | ||
53 | |||
47 | # Copy complete content of source archive to /usr/share/${_pkgname}/ | 54 | # Copy complete content of source archive to /usr/share/${_pkgname}/ |
48 | cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" | 55 | cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" |
49 | 56 | ||