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

23
bmpanel/PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=bmpanel
pkgver=0.9.27
pkgrel=2
pkgdesc="A modern, NETWM compliant, bitmap theme-based x11 panel."
arch=('i686' 'x86_64')
license=('Modified-BSD')
depends=('imlib2' 'fontconfig' 'libxrender' 'libxcomposite' 'ttf-dejavu')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/nsf/bmpanel/archive/${pkgver}.tar.gz")
sha512sums=('2b19833360ea21b39d6c7c4b1d2dd6b7ede7acd308d4642c6ed630d6de4626678e4ba64a6bf7f22037fd855246f10076fb1b6d8375f66e3a420b04dd20099a08')
build() {
cd $srcdir/$pkgname-$pkgver
./configure \
--prefix=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
DESTDIR=$pkgdir make install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}