Skip to content

Instantly share code, notes, and snippets.

@Ste74
Created January 11, 2019 22:16
Show Gist options
  • Save Ste74/73163040eed72e5b176ef45caf2fcad7 to your computer and use it in GitHub Desktop.
Save Ste74/73163040eed72e5b176ef45caf2fcad7 to your computer and use it in GitHub Desktop.
budgie-extras pkgbuild
# Maintainer: Stefano Capitani <stefanoatmanjarodotorg>
# Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org>
pkgname=budgie-extras
pkgver=0.7.0
pkgrel=1.1
pkgdesc='Additional Budgie Desktop enhancements for the user experience'
arch=('x86_64')
license=('GPL3')
url='https://github.com/UbuntuBudgie/budgie-extras'
depends=('budgie-desktop' 'wmctrl' 'xdotool' 'xprintidle' 'python' 'python-gobject' 'python-cairo' 'libgee'
'zenity' 'vorbis-tools' 'python-psutil' 'sound-theme-freedesktop' 'imagemagick' 'python-pillow'
'python-svgwrite' 'python-cairosvg' 'python-pyudev' 'python-requests' 'libpeas' 'json-glib')
makedepends=('gobject-introspection' 'pkgconf' 'meson' 'ninja' 'vala' 'intltool' 'autopep8')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha512sums=('d7ff4cb12e6bcaa009ab141c3bcfe059252e984be203b6f7e05675a3942ea17d9d6f9832500649358c2bfc288f5266fbc76636a275d33a2e4135dbe535f72f13')
build() {
mkdir -p $pkgname-$pkgver/build
cd $pkgname-$pkgver/build
arch-meson ..
ninja
}
package() {
cd $pkgname-$pkgver/build
DESTDIR="$pkgdir" ninja install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment