initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

26
xdo/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=xdo
pkgver=0.5.7
pkgrel=1
pkgdesc='Utility for performing actions on windows in X'
arch=('i686' 'x86_64')
url='https://github.com/baskerville/xdo'
license=('Simplified-BSD')
depends=('libxcb' 'xcb-util-wm' 'xcb-util')
source=(https://github.com/baskerville/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha512sums=('0978a8571a35899c916495c9d38458adb6c766db4d498dfacf2f0a46e373f7caa3c3e227096b3e60e03c67b972777cf7519e5b6eee7ebb91f82d4450ac0ff98d')
build() {
cd $pkgname-$pkgver
make PREFIX=/usr
}
package() {
cd $pkgname-$pkgver
make PREFIX=/usr DESTDIR="$pkgdir" install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# getver: github.com/baskerville/xdo/blob/master/VERSION
# vim:ts=2 sw=2 et: