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

25
snownews/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=snownews
pkgver=1.11
pkgrel=1
pkgdesc="RSS feed reader for the command-line"
arch=('i686' 'x86_64')
url='https://sourceforge.net/projects/snownews/'
license=('GPL-3')
depends=('curl' 'libxml2')
makedepends=('gettext-tiny')
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}-${pkgver}.tar.gz")
sha512sums=('ce7e282405a1c0cc5adb64906193886fc9592607f3bdce474ff8b179d23569cbd66d08c33a06290b3729bc158cd38abf0f6c6147f49937b9e4b6949bf690a1f8')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" install
install -D -m644 LICENSE.md -t "${pkgdir}/usr/share/licenses/$pkgname"
}