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
scdoc/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=scdoc
pkgver=1.11.1
pkgrel=1
pkgdesc="Tool for generating roff manual pages"
license=('Expat')
arch=('i686' 'x86_64')
url='https://git.sr.ht/~sircmpwn/scdoc/'
source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz")
sha512sums=('cd6ac88fc9db48efaae0df0f6472a18e28f92fc2735fee18c07516fd358e9c0921eae9d944020eacd08285bbf59fbcc1d389a6565cef29fc50ad511ee5e7fa9f')
build() {
cd "$pkgname-$pkgver"
# Upstream purposefully does not honor the user's LDFLAGS in order to keep
# scdoc static. As we gain no benefit to statically linking and, in fact,
# lose standard Arch practices (such as RELRO and PIE), we must override
# LDFLAGS
make PREFIX=/usr LDFLAGS="$LDFLAGS"
}
package() {
cd "$pkgname-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}