commit df56fbe49789e3052c425f415516aee7b942ccbc Author: Finn-Thorben Sell Date: Wed Mar 4 14:37:41 2020 +0100 initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..3565f75 --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..100f043 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.tar.gz +*.pkg.tar.xz +pkg/ +src/ +shell/ + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..fa4dd27 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: ftsell +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 +} +