summaryrefslogtreecommitdiff
path: root/community/pinfo
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/pinfo
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pinfo')
-rw-r--r--community/pinfo/ChangeLog3
-rw-r--r--community/pinfo/PKGBUILD25
2 files changed, 28 insertions, 0 deletions
diff --git a/community/pinfo/ChangeLog b/community/pinfo/ChangeLog
new file mode 100644
index 000000000..811f87d4f
--- /dev/null
+++ b/community/pinfo/ChangeLog
@@ -0,0 +1,3 @@
+2007-06-28 tardo <tardo@nagi-fanboi.net>
+* Built for x86_64
+
diff --git a/community/pinfo/PKGBUILD b/community/pinfo/PKGBUILD
new file mode 100644
index 000000000..9e0791384
--- /dev/null
+++ b/community/pinfo/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 38757 2011-01-31 16:57:31Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
+
+pkgname=pinfo
+pkgver=0.6.10
+pkgrel=1
+pkgdesc="A hypertext info file viewer"
+arch=('i686' 'x86_64')
+url="http://pinfo.alioth.debian.org/"
+license=('GPL')
+depends=('ncurses' 'readline')
+source=(https://alioth.debian.org/frs/download.php/3351/$pkgname-$pkgver.tar.bz2)
+md5sums=('fe3d3da50371b1773dfe29bf870dbc5b')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ unset LDFLAGS
+ [ -x configure ] || ./autogen.sh
+ [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc --enable-cursor \
+ --mandir=/usr/share/man --infodir=/usr/share/info
+ make
+ make DESTDIR=$pkgdir install
+ rm -f $pkgdir/usr/share/info/dir
+}