initial commit take from the AUR mirror

This commit is contained in:
2016-06-23 07:00:00 +02:00
parent 96e50f93d1
commit b793cf7c88
11 changed files with 1563 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Maintainer: Nuno Araujo <nuno.araujo@russo79.com>
pkgname=gnome15-gnome-shell
pkgver=0.0.3
pkgrel=1
pkgdesc="Gnome Shell plugin for Gnome15"
arch=(any)
url="http://www.russo79.com/gnome15"
license=('GPL')
depends=('gnome15' 'gnome-shell')
makedepends=('binutils')
install=$pkgname.install
source=("https://projects.russo79.com/attachments/download/110/${pkgname}-${pkgver}.tar.gz")
md5sums=('7aaace30a54dfe392c067d9eb37aa082')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install DESTDIR=${pkgdir}
}
# vim:set ts=2 sw=2 et:

View File

@@ -0,0 +1,13 @@
post_install() {
gtk-update-icon-cache -q -f /usr/share/icons/gnome
echo " >> Do not forget to enable the Logitech Keyboard gnome-shell extension"
}
post_upgrade() {
gtk-update-icon-cache -q -f /usr/share/icons/gnome
}
post_remove() {
gtk-update-icon-cache -q -f /usr/share/icons/gnome
}