From Fedora Project Wiki
(New page: Here's some stuff about me: http://koji.fedoraproject.org/koji/userinfo?userID=499 https://staff.washington.edu/joshuadf/) |
No edit summary |
||
Line 4: | Line 4: | ||
https://staff.washington.edu/joshuadf/ | https://staff.washington.edu/joshuadf/ | ||
Rebuilding a source RPM: | |||
By the way, you can find links to the Fedora source packages, filed bugs, | |||
updates, etc, for any Fedora at the newish Package Database: | |||
https://admin.fedoraproject.org/pkgdb/packages/name/alpine | |||
Here is how to build alpine : | |||
<pre> | |||
# standard tools | |||
yum -y groupinstall "Development Tools" | |||
yum -y install fedora-packager | |||
# for alpine BuildRequires | |||
# http://et.redhat.com/~rjones/auto-buildrequires/ | |||
yum -y install aspell gettext inews krb5-devel ncurses-devel openldap-devel | |||
openssl-devel pam-devel | |||
mkdir alpinetest | |||
cd alpinetest | |||
svn checkout https://svn.cac.washington.edu/public/alpine/snapshots/ | |||
cd snapshots | |||
_sysconfdir=/etc/ | |||
touch imap/ip6 | |||
./configure \ | |||
--enable-debug=no \ | |||
--without-tcl \ | |||
--with-c-client-target=lfd \ | |||
--with-passfile=.alpine.passfile \ | |||
--with-spellcheck-prog=aspell \ | |||
--with-system-pinerc=%{_sysconfdir}/pine.conf \ | |||
--with-system-fixed-pinerc=%{_sysconfdir}/pine.conf.fixed | |||
make | |||
alpine/alpine | |||
</pre> |
Revision as of 23:13, 11 May 2009
Here's some stuff about me:
http://koji.fedoraproject.org/koji/userinfo?userID=499
https://staff.washington.edu/joshuadf/
Rebuilding a source RPM:
By the way, you can find links to the Fedora source packages, filed bugs, updates, etc, for any Fedora at the newish Package Database: https://admin.fedoraproject.org/pkgdb/packages/name/alpine
Here is how to build alpine :
# standard tools yum -y groupinstall "Development Tools" yum -y install fedora-packager # for alpine BuildRequires # http://et.redhat.com/~rjones/auto-buildrequires/ yum -y install aspell gettext inews krb5-devel ncurses-devel openldap-devel openssl-devel pam-devel mkdir alpinetest cd alpinetest svn checkout https://svn.cac.washington.edu/public/alpine/snapshots/ cd snapshots _sysconfdir=/etc/ touch imap/ip6 ./configure \ --enable-debug=no \ --without-tcl \ --with-c-client-target=lfd \ --with-passfile=.alpine.passfile \ --with-spellcheck-prog=aspell \ --with-system-pinerc=%{_sysconfdir}/pine.conf \ --with-system-fixed-pinerc=%{_sysconfdir}/pine.conf.fixed make alpine/alpine