contrib/urlview/Pkgfile

23 lines
527 B
Plaintext
Raw Normal View History

2020-01-20 16:36:54 +01:00
# Description: Extracts URLs from text
2009-09-19 01:13:41 +02:00
# URL: ftp://ftp.mutt.org/pub/mutt/contrib/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: ncurses
2006-10-22 15:19:50 +02:00
name=urlview
version=0.9
2020-01-20 16:36:54 +01:00
release=2
2014-09-12 11:29:17 +02:00
source=(ftp://ftp.netbsd.org/pub/pkgsrc/distfiles/${name}-${version}.tar.gz \
2009-09-19 01:13:41 +02:00
${name}-${version}.patch)
2006-10-22 15:19:50 +02:00
build () {
cd $name-$version
2020-01-20 16:36:54 +01:00
mkdir -p $PKG/usr/share/man/man1
2006-10-22 15:19:50 +02:00
patch -p1 < ../$name-$version.patch
2020-01-20 16:36:54 +01:00
./configure --prefix=/usr \
--mandir=/usr/share/man
2006-10-22 15:19:50 +02:00
make
make DESTDIR=$PKG install
}