Files
extra/skippy-xd/PKGBUILD
2025-06-22 20:39:04 -05:00

25 lines
792 B
Bash

# 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"
}