summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Candau2023-10-10 13:17:30 +0200
committerRobin Candau2023-10-10 13:17:30 +0200
commit5b20217d6a5dd9dbbab14dea287c737d490153f3 (patch)
treee22191ba0bd745cd6be09effc8ef601fa1c9e5ad
parenteb0d7d9bf2e642d857c7e81a1db03c4c5402876e (diff)
downloadaur-5b20217d6a5dd9dbbab14dea287c737d490153f3.tar.gz
Useless chown
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 3 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 74af21d964a3..5e0df3438d10 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gnome-shell-extension-caffeine
pkgdesc = Extension for GNOME shell to disable screensaver and auto suspend
pkgver = 50
- pkgrel = 2
+ pkgrel = 3
epoch = 1
url = https://github.com/eonpatapon/gnome-shell-extension-caffeine
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 188ac7e5c07e..87faccbadc8a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=gnome-shell-extension-caffeine
_uuid=caffeine@patapon.info
pkgver=50
-pkgrel=2
+pkgrel=3
epoch=1
pkgdesc='Extension for GNOME shell to disable screensaver and auto suspend'
arch=('any')
@@ -21,8 +21,7 @@ build() {
package() {
cd "${pkgname}-${pkgver}"
install -d "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
- bsdtar -xvf "${_uuid}.zip" -C "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
- chown -R root:root "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
+ bsdtar -xvf "${_uuid}.zip" -C "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}" --no-same-owner
install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}