add config.sh

This commit is contained in:
vincent 2020-10-06 19:18:40 +02:00
parent bd55de15d5
commit c87c8f46b5

View File

@ -1,15 +1,15 @@
# Maintainer: ftsell <aur@finn-thorben.me> # Maintainer: Vincent.Ducamps <aur@ducamps.win>
pkgname=gnome-shell-extension-pop-shell-git pkgname=gnome-shell-extension-pop-shell-git
pkgdesc="Pop Shell - Tiling window management in Gnome (WIP)" pkgdesc="Pop Shell - Tiling window management in Gnome (WIP)"
pkgver=r540.9286532 pkgver=r552.0fce7eb
pkgrel=2 pkgrel=3
_gitorg=pop-os _gitorg=pop-os
_gitname=shell _gitname=shell
_gitbranch=master_focal _gitbranch=master_focal
arch=(any) arch=(any)
url="https://github.com/pop-os/shell" url="https://github.com/pop-os/shell"
license=("GPLv3") license=("GPLv3")
install="pop-shell.install"
conflicts=("gnome-shell-extension-pop-shell") conflicts=("gnome-shell-extension-pop-shell")
makedepends=("typescript" "git") makedepends=("typescript" "git")
depends=("gnome-shell" "pop-shell-shortcuts-git") depends=("gnome-shell" "pop-shell-shortcuts-git")
@ -35,6 +35,7 @@ build() {
package() { package() {
cd "${srcdir}/${_dir}" cd "${srcdir}/${_dir}"
make DESTDIR="${pkgdir}/" install make DESTDIR="${pkgdir}/" install
install -Dm644 rebuild.sh "${pkgdir}//usr/share/gnome-shell/extensions/pop-shell@system76.com" install -Dm755 scripts/configure.sh "${pkgdir}/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh"
touch "${pkgdir}/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/.confirm_shortcut_change"
} }