20 lines
499 B
Plaintext
20 lines
499 B
Plaintext
|
# Description: Text mode RSS newsreader for Linux and Unix.
|
||
|
# URL: http://kiza.kcore.de/software/snownews/
|
||
|
# Packager: Chris Farrell, timcowchip at gmail dot com
|
||
|
# Maintainer: Chris Farrell, timcowchip at gmail dot com
|
||
|
# Depends on: libxml2 gettext perl
|
||
|
|
||
|
name=snownews
|
||
|
version=1.5.12
|
||
|
release=1
|
||
|
source=(http://kiza.kcore.de/software/$name/download/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-nls
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|