Date: Thursday, March 16, 2023 @ 22:14:28
Author: alex19ep
Revision: 1421215
archrelease: copy trunk to community-testing-x86_64
Added:
mate-user-share/repos/community-testing-x86_64/
mate-user-share/repos/community-testing-x86_64/PKGBUILD
(from rev 1421214, mate-user-share/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: mate-user-share/repos/community-testing-x86_64/PKGBUILD (from rev
1421214, mate-user-share/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-16 22:14:28 UTC (rev 1421215)
@@ -0,0 +1,38 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-user-share
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="User level public file sharing via WebDAV for MATE"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('gtk3' 'mod_dnssd' 'gettext')
+makedepends=('caja' 'dbus-glib' 'itstool' 'libcanberra' 'libnotify')
+optdepends=('caja: File sharing extension')
+groups=('mate-extra')
+conflicts=('mate-user-share-gtk3')
+replaces=('mate-user-share-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('936df4d5c6a0d7a6107524767c0340a3b4080b05a151a71eb8d8174c32396287')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexec=/usr/lib/${pkgname} \
+ --sysconfdir=/etc \
+ --disable-bluetooth
+
+ #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}