summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2012-03-03 01:41:42 -0500
committerPaul W. Frields <stickster@gmail.com>2012-03-03 01:41:42 -0500
commit8a53fee1a58b906c41eec378f5db7477e3eba926 (patch)
tree6cf87c5cc1f62d6e7ab7f24b80ff2c5d495210ea
parentc9d1cb7e2806129cb5b52d489f4844f5d82f56e6 (diff)
downloadirssi-python-8a53fee1a58b906c41eec378f5db7477e3eba926.tar.gz
irssi-python-8a53fee1a58b906c41eec378f5db7477e3eba926.tar.xz
irssi-python-8a53fee1a58b906c41eec378f5db7477e3eba926.zip
Add a personal READMEHEADmaster
-rw-r--r--README.pfrields30
1 files changed, 30 insertions, 0 deletions
diff --git a/README.pfrields b/README.pfrields
new file mode 100644
index 0000000..0ffe7e0
--- /dev/null
+++ b/README.pfrields
@@ -0,0 +1,30 @@
+To build, you need either:
+
+* (if using 'master' branch)... the original irssi-0.8.15 sources
+ unpacked
+
+* (if using 'build-against-fixed-rpm' branch)... rebuilt irssi and
+ irssi-devel RPMs from the SRPM found here:
+ http://pfrields.fedorapeople.org/packages/SRPMS/irssi-0.8.15-7.1.fc16.src.rpm
+
+You'll also need the normal development tools such as GNU autotools
+and libtool. Then simply execute the following in a shell:
+
+libtoolize -fci
+aclocal
+autoheader
+automake --gnu -a -c
+autoconf
+# here, <lib> should be lib for i686 or lib64 for x86_64... and use
+# the right path, /usr/include/irssi if you took the second option above
+./configure --with-irssi=/path/to/irssi/ --prefix=/usr --libdir=/usr/<lib>
+make
+sudo make install
+
+Now you should be able to do the following in irssi:
+
+/load python
+/py exec import irssi
+/py exec dir(irssi)
+
+Have fun!