Skip to content

Instantly share code, notes, and snippets.

@Stebalien
Created May 11, 2013 14:31
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 Stebalien/5560119 to your computer and use it in GitHub Desktop.
Save Stebalien/5560119 to your computer and use it in GitHub Desktop.
Fixed up yad PKGBUILD
# Maintainer: trile7 at gmail dot com
# Contributor: Ernia <monghitri@aruba.it>
pkgname=yad
pkgver=0.21.0
pkgrel=1
pkgdesc="A fork of zenity - display graphical dialogs from shell scripts or command line"
url="http://code.google.com/p/yad/"
arch=('x86_64' 'i686')
license=('GPL3')
depends=('gtk2' 'hicolor-icon-theme')
makedepends=('intltool')
install='yad.install'
source=(http://yad.googlecode.com/files/${pkgname}-${pkgver}.tar.xz)
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
sha1sums=('dd2b00164b391ca31f85f83fed5627d785c14ae2')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment