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

31
rep-gtk/PKGBUILD Normal file
View File

@@ -0,0 +1,31 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=rep-gtk
pkgver=0.90.8.2
pkgrel=2
pkgdesc="Binding of the GTK and GDK libraries for the librep Lisp environment"
arch=('i686' 'x86_64')
url='https://sawfish.fandom.com/wiki/Rep-GTK'
license=('GPL-2')
depends=('librep' 'gtk2')
options=('!libtool')
source=("${pkgname}-${pkgver}.tar.xz::https://deb.debian.org/debian/pool/main/r/rep-gtk/rep-gtk_${pkgver}.orig.tar.xz")
sha512sums=('385058b232299d9a79339b434f14c35baa79f3facb7a3a47d7fedd51ded9bd8cdd771b5959b2b348047ba268e98692db09a1e447fa541d5b0b72cff931f54df1')
prepare() {
cd "${srcdir}/${pkgname}_${pkgver}"
./autogen.sh
}
build() {
cd "${srcdir}/${pkgname}_${pkgver}"
./configure \
--prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}_${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}