[arch-commits] Commit in yad/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Christian Hesse eworm at gemini.archlinux.org
Wed Mar 2 15:25:24 UTC 2022


    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 <mail at eworm.de>
+# Contributor: Aaron Fischer <mail at aaron-fischer.net>
+# Contributor: Steven Allen <steven at stebalien.com>
+# Contributor: trile7 at gmail dot com
+# Contributor: Ernia <monghitri at aruba.it>
+
+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
+}



More information about the arch-commits mailing list