initial commit

This commit is contained in:
Finn-Thorben Sell 2020-03-04 14:37:41 +01:00
commit df56fbe497
3 changed files with 60 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = gnome-shell-extension-pop-shell-git
pkgdesc = Pop Shell - Tiling window management in Gnome
pkgver = r192.e15786b
pkgrel = 1
url = https://github.com/pop-os/shell
arch = any
license = GPLv3
makedepends = typescript
depends = gnome-shell
conflicts = gnome-shell-extension-pop-shell
source = shell::git+https://github.com/pop-os/shell.git#branch=master_focal
sha256sums = SKIP
pkgname = gnome-shell-extension-pop-shell-git

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.tar.gz
*.pkg.tar.xz
pkg/
src/
shell/

39
PKGBUILD Normal file
View File

@ -0,0 +1,39 @@
# Maintainer: ftsell <aur@finn-thorben.me>
pkgname=gnome-shell-extension-pop-shell-git
pkgdesc="Pop Shell - Tiling window management in Gnome (WIP)"
pkgver=r192.e15786b
pkgrel=1
_gitorg=pop-os
_gitname=shell
_gitbranch=master_focal
arch=(any)
url="https://github.com/pop-os/shell"
license=("GPLv3")
conflicts=("gnome-shell-extension-pop-shell")
makedepends=("typescript")
depends=("gnome-shell")
_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
}