Date: Thursday, March 16, 2023 @ 18:36:01 Author: alex19ep Revision: 1421143
add: Caja-Actions package Added: caja-actions/ caja-actions/repos/ caja-actions/trunk/ caja-actions/trunk/PKGBUILD ----------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) Added: caja-actions/trunk/PKGBUILD =================================================================== --- caja-actions/trunk/PKGBUILD (rev 0) +++ caja-actions/trunk/PKGBUILD 2023-03-16 18:36:01 UTC (rev 1421143) @@ -0,0 +1,33 @@ +# Maintainer: Alexander Epaneshnikov <[email protected]> +# Contributor: Brad Fanella <[email protected]> +# Contributor: Martin Wimpress <[email protected]> + +pkgname=caja-actions +pkgver=1.27.0 +pkgrel=1 +pkgdesc="Extension for Caja which allows the user to add arbitrary program to be launched" +url="https://mate-desktop.org" +arch=('x86_64') +license=('GPL') +depends=('caja' 'libgtop') +makedepends=('itstool') +groups=('mate-extra') +source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz") +sha256sums=('c0e64e123ebe8ecf288cb6f0e48dd9bee6162978c73db4aeb6043fa93bb7e5eb') + +build() { + cd "$pkgname-$pkgver" + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/$pkgname + + #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 +}
