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

29
remind/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=remind
pkgver=4.3.7
_pkgver=$(echo "$pkgver" | awk -F. '{ printf "%02d.%02d.%02d", $1, $2, $3 }')
pkgrel=1
pkgdesc="A sophisticated calendar and alarm program"
arch=('i686' 'x86_64')
url='https://dianne.skoll.ca/projects/remind/'
license=('GPL-2')
depends=('tk' 'tcllib')
source=("https://dianne.skoll.ca/projects/$pkgname/download/${pkgname}-${_pkgver}.tar.gz"{,.sig})
options=('!emptydirs')
sha512sums=('5fd875b3ca11362572be22cfedac7cdefb7e3cb68902ae726246420c8fbc8c026a9290b58b30f43ef571af7dbc079643c336776beb2a38f9dbdd54b42d0ab783'
'SKIP')
validpgpkeys=('738E4D954052902C147D07B2685A5A5E511D30E2') # Dianne Skoll <dianne@skollsoft.com>
build() {
cd "${pkgname}-${_pkgver}"
./configure \
--prefix=/usr
make
}
package() {
cd "${pkgname}-${_pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
}