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

24
skippy-xd/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=skippy-xd
pkgver=2023.06.25
pkgrel=1
pkgdesc="A full-screen task switcher for X11"
arch=('i686' 'x86_64')
license=('GPL-2')
url='https://github.com/felixfung/skippy-xd'
depends=('giflib' 'libjpeg-turbo' 'libxcomposite' 'libxdamage' 'libxext' 'libxft' 'libxinerama')
backup=('etc/xdg/skippy-xd.rc')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/felixfung/skippy-xd/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=('ea62d8c071f3fb28a5161cf944ba0a2b8b6f1da85b05d8cdf670feb1097d2e2a461207ebc530d5d58ed012bf409b8b8d2633f290c27504c1c5b4ee16bd051ab2')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}