41 lines
983 B
Bash
Raw Normal View History

2020-10-06 19:18:40 +02:00
# Maintainer: Vincent.Ducamps <aur@ducamps.win>
2020-03-04 14:37:41 +01:00
pkgname=gnome-shell-extension-pop-shell-git
pkgdesc="Pop Shell - Tiling window management in Gnome (WIP)"
2020-10-06 19:18:40 +02:00
pkgver=r552.0fce7eb
pkgrel=3
2020-03-04 14:37:41 +01:00
_gitorg=pop-os
_gitname=shell
_gitbranch=master_focal
arch=(any)
url="https://github.com/pop-os/shell"
license=("GPLv3")
2020-10-06 19:18:40 +02:00
install="pop-shell.install"
2020-03-04 14:37:41 +01:00
conflicts=("gnome-shell-extension-pop-shell")
2020-09-28 21:32:17 +02:00
makedepends=("typescript" "git")
2020-05-02 18:54:24 +02:00
depends=("gnome-shell" "pop-shell-shortcuts-git")
2020-03-04 14:37:41 +01:00
_dir="${_gitname}"
source=("${_dir}::git+https://github.com/${_gitorg}/${_gitname}.git#branch=${_gitbranch}")
sha256sums=("SKIP")
pkgver() {
cd "${srcdir}/${_dir}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/${_dir}"
make all
}
package() {
cd "${srcdir}/${_dir}"
make DESTDIR="${pkgdir}/" install
2020-10-06 19:18:40 +02:00
install -Dm755 scripts/configure.sh "${pkgdir}/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh"
2020-03-04 14:37:41 +01:00
}