Skip to content

Instantly share code, notes, and snippets.

@davekeogh
Last active March 29, 2021 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davekeogh/f6c001a8075834bf4bbd362409f8c7b5 to your computer and use it in GitHub Desktop.
Save davekeogh/f6c001a8075834bf4bbd362409f8c7b5 to your computer and use it in GitHub Desktop.
xfce4-docklike-plugin v0.2.0 PKGBUILD
# Maintainer : hayao@fascode.net
# Contributer: nsz32 <nszabo2 at gmail dot com>
pkgname="xfce4-docklike-plugin"
pkgver="0.2.0"
pkgrel=1
pkgdesc='A modern, docklike, minimalist taskbar for XFCE'
arch=('i686' 'x86_64')
url='https://github.com/davekeogh/xfce4-docklike-plugin'
license=('GPL3')
depends=('xfce4-panel>=4.4' 'libwnck3' 'libxfce4ui' 'gtk3' 'cairo' 'glib2')
makedepends=('xfce4-dev-tools' 'intltool')
conflicts=("${pkgname}-git")
source=("https://github.com/davekeogh/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('b15a96f645fdb683edf5d69d0c9b6b2d85f0f7152418fa5071cc97f0442303c76b57b06cef79bd5e4f163432212228613c97b571807ea576367d313af43d5227')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment