diff options
author | Eric Cheng | 2020-05-20 01:41:15 -0400 |
---|---|---|
committer | Eric Cheng | 2020-05-20 01:41:15 -0400 |
commit | fb14c7302cb899c614dd6b9d611622bfc92f28ff (patch) | |
tree | 531185d4425b2e23c5af8ff38fd341fcef57e7dd | |
download | aur-fb14c7302cb899c614dd6b9d611622bfc92f28ff.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..da5edaae946 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = earth-view-wallpaper-gnome-extension + pkgdesc = A beautiful satellite image from Google Earth as your GNOME desktop wallpaper. + pkgver = 10 + pkgrel = 1 + url = https://github.com/neffo/earth-view-wallpaper-gnome-extension + arch = any + license = GPL-3 + depends = gnome-shell>=3.18 + source = earth-view-wallpaper-gnome-extension-10.tar.gz::https://github.com/neffo/earth-view-wallpaper-gnome-extension/archive/v10.tar.gz + +pkgname = earth-view-wallpaper-gnome-extension + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..d18aee73f60 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Eric Cheng <eric 'at' chengeric 'fullstop' com> + +pkgname=earth-view-wallpaper-gnome-extension +pkgver=10 +pkgrel=1 +pkgdesc="A beautiful satellite image from Google Earth as your GNOME desktop wallpaper." +arch=('any') +url="https://github.com/neffo/${pkgname}" +license=('GPL-3') +depends=('gnome-shell>=3.18') +source=("$pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz") + +package() { + tar -xzf "$pkgname-$pkgver" + + mv "$pkgname-$pkgver" "$pkgdir/usr/share/gnome-shell/extensions" +} |