Date: Thursday, December 15, 2022 @ 13:30:31
Author: foutrelis
Revision: 464366
archrelease: copy trunk to staging-x86_64
Added:
libxfce4ui/repos/staging-x86_64/
libxfce4ui/repos/staging-x86_64/PKGBUILD
(from rev 464365, libxfce4ui/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: libxfce4ui/repos/staging-x86_64/PKGBUILD (from rev 464365,
libxfce4ui/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-12-15 13:30:31 UTC (rev 464366)
@@ -0,0 +1,34 @@
+# Maintainer: Evangelos Foutras <[email protected]>
+# Contributor: Xavier Devlamynck <[email protected]>
+
+pkgname=libxfce4ui
+pkgver=4.18.0
+pkgrel=1
+pkgdesc="Widgets library for the Xfce desktop environment"
+arch=('x86_64')
+url="https://www.xfce.org/"
+license=('GPL2')
+depends=('libxfce4util' 'gtk3' 'xfconf' 'libsm' 'startup-notification'
+ 'libgtop' 'libepoxy' 'hicolor-icon-theme')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('532247c4387c17bb9ef94a73147039b8d013c3131c95cdbd2fa85fbcc848d06b')
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-debug \
+ --with-vendor-info='Arch Linux'
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: