aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Springer2020-05-22 16:08:18 +0200
committerStephan Springer2020-05-22 16:11:02 +0200
commitf2745e4b2d87aee516231ff6529431429ae33078 (patch)
tree6c0877f16c61ef4eb82df2b17b4640561f6a917b
parent3900361c6d7f4642b2f3bd375d9990d822107478 (diff)
downloadpackages-f2745e4b2d87aee516231ff6529431429ae33078.tar.gz
packages-f2745e4b2d87aee516231ff6529431429ae33078.tar.bz2
packages-f2745e4b2d87aee516231ff6529431429ae33078.zip
install libs in /usr/share/popcorntime/lib instead of /usr/lib/popcorntime
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD14
2 files changed, 4 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 82b056c..b5bbd93 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
1pkgbase = popcorntime-bin 1pkgbase = popcorntime-bin
2 pkgdesc = Stream free movies and TV shows from torrents 2 pkgdesc = Stream free movies and TV shows from torrents
3 pkgver = 0.4.4 3 pkgver = 0.4.4
4 pkgrel = 1 4 pkgrel = 2
5 url = https://popcorntime.app/ 5 url = https://popcorntime.app/
6 arch = x86_64 6 arch = x86_64
7 license = GPL3 7 license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 79b10b8..ff878e4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,7 +16,7 @@
16pkgname=popcorntime-bin 16pkgname=popcorntime-bin
17_pkgname=popcorntime 17_pkgname=popcorntime
18pkgver=0.4.4 18pkgver=0.4.4
19pkgrel=1 19pkgrel=2
20pkgdesc="Stream free movies and TV shows from torrents" 20pkgdesc="Stream free movies and TV shows from torrents"
21arch=('x86_64') 21arch=('x86_64')
22url="https://popcorntime.app/" 22url="https://popcorntime.app/"
@@ -48,16 +48,8 @@ package() {
48 # Remove makepkg-created symlinks before copying content 48 # Remove makepkg-created symlinks before copying content
49 rm "$_zipfile" "${_pkgname}.desktop" 49 rm "$_zipfile" "${_pkgname}.desktop"
50 50
51 # Move library files to /usr/lib/popcorntime 51 # Copy complete content of source archive to /usr/share/${_pkgname}
52 install -d "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" 52 cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}"
53 mv "${srcdir}"/lib/* "${pkgdir}/usr/lib/${_pkgname}/${pkgver}"
54 rmdir "${srcdir}"/lib
55
56 install -d "${pkgdir}/etc/ld.so.conf.d"
57 echo "/usr/lib/${_pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${_pkgname}.conf"
58
59 # Copy complete content of source archive to /usr/share/${_pkgname}/
60 cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/"
61 53
62 # Fix permissions 54 # Fix permissions
63 find "${pkgdir}/usr/share/${_pkgname}/" -perm 600 -exec chmod 644 '{}' \; 55 find "${pkgdir}/usr/share/${_pkgname}/" -perm 600 -exec chmod 644 '{}' \;