Date: Wednesday, March 2, 2022 @ 15:25:24
  Author: eworm
Revision: 1139609

archrelease: copy trunk to testing-x86_64

Added:
  yad/repos/testing-x86_64/
  yad/repos/testing-x86_64/PKGBUILD
    (from rev 1139608, yad/trunk/PKGBUILD)

----------+
 PKGBUILD |   39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

Copied: yad/repos/testing-x86_64/PKGBUILD (from rev 1139608, yad/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2022-03-02 15:25:24 UTC (rev 1139609)
@@ -0,0 +1,39 @@
+# Maintainer: Christian Hesse <[email protected]>
+# Contributor: Aaron Fischer <[email protected]>
+# Contributor: Steven Allen <[email protected]>
+# Contributor: trile7 at gmail dot com
+# Contributor: Ernia <[email protected]>
+
+pkgname=yad
+pkgver=11.0
+pkgrel=1
+pkgdesc='A fork of zenity - display graphical dialogs from shell scripts or 
command line'
+url='https://github.com/v1cont/yad'
+arch=('x86_64')
+license=('GPL3')
+depends=('gtk3' 'webkit2gtk' 'gtksourceview3' 'gspell')
+makedepends=('autoconf' 'automake' 'intltool')
+source=("https://github.com/v1cont/yad/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('af20b5a7120ba303ca8845db62c9a7410ae5b5224a3eb3563cd70774a745b9f2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  autoreconf -ivf
+  intltoolize
+  ./configure \
+    --prefix=/usr \
+    --enable-icon-browser \
+    --enable-html \
+    --enable-gio \
+    --enable-spell \
+    --enable-sourceview
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Reply via email to