blob: 972760b975cf256df600806573fa7f85509afcd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
pkgname=gnome-shell-extension-screen-autorotate
pkgver=24
pkgrel=1
pkgdesc="A GNOME extension to auto-rotate screen regardless of touch mode"
arch=("any")
url="https://github.com/shyzus/gnome-shell-extension-screen-autorotate"
license=("GPL")
depends=("gnome-shell" "iio-sensor-proxy")
conflicts=("gnome-shell-extension-screen-autorotate-git")
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
md5sums=('SKIP')
_uuid="screen-rotate@shyzus.github.io"
package() {
source_dir="$srcdir/$pkgname-$pkgver/$_uuid"
install -dm755 "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
install -Dm755 -t "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}" "${source_dir}"/*.*
install -dm755 "${pkgdir}/usr/share/glib-2.0/schemas"
install -Dm644 -t "${pkgdir}/usr/share/glib-2.0/schemas" "${source_dir}/schemas"/*.xml
}
|