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

26
diffstat/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=diffstat
pkgver=1.64
pkgrel=2
pkgdesc="Display a histogram of diff changes"
arch=('i686' 'x86_64')
url='https://invisible-island.net/diffstat'
depends=('glibc')
license=('Python-CWI')
source=("https://invisible-mirror.net/archives/$pkgname/$pkgname-$pkgver.tgz")
sha512sums=('d647477beb49b0999c5de41d084da827528571c4848f40c69c2d64d060fc89848d15d03d59b1a31d79f02180f81d92cdf6e19d0172482bc569cf2a87476f12cf')
build () {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}