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

25
tabble/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=tabble
pkgver=0.45
pkgrel=1
pkgdesc="A program launcher with tabs for X"
arch=('i686' 'x86_64')
url='https://www.rillion.net/tabble'
license=('GPL-2')
depends=('gtk2' 'gdk-pixbuf2')
source=("https://www.rillion.net/tabble/${pkgname}-${pkgver}.tar.gz")
sha512sums=('eb27d0f6d7df0adfcef1e247179eebeb0af3e436e2ee7591b14b4fc1c09def7f283fb185e2678dd26861fca281bc7033611e79d62c3567927f447ad2b0586511')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}