Ape Base Compile System 1.01-ap20096876 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Ape Base Compile System 1.01-ap20096876 (Default branch)
# 1  
Old 03-18-2008
Ape Base Compile System 1.01-ap20096876 (Default branch)

ImageThe Ape Base Compile System is a set of scriptsthat leverage ESP EPM and MREPO to maintain RedHat based systems that require custom and secludedbinaries. It achieves cross platform reproduciblecompiles applications like Apache HTTPD, MySQL,and PHP, supports a common --prefix parentdirectory to allow different versions of anapplication to be installed, provides an easymethod to switch between application versions,places selected application binaries in a central"bin" directory, supports delivery via Yum andother common installers, and provides a method fornon-compiled "skeleton" files to be included withinstallation and distribution.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Programming

How do I compile a file system?

hello everybody! I have the source code(C) about a flat file system with shell,directory service,file service and blockservice.But I don t know how to compile this.Can anyone inform me?I connect to a remote system of Unix...Actually I have 4 files,system.c direct.c blockserv.c and fileserv.c.:( (4 Replies)
Discussion started by: sonia13
4 Replies

2. UNIX for Dummies Questions & Answers

Compiling gcc to compile make to compile yaboot

I have just installed OpenBSD on a 333MHz PPC iMac G3. It has a 6GB HDD that has been partitioned as 1GB MacOS 8.5.1, 3GB MacOS X 10.3.9, 2GB OpenBSD 4.8. I now need to install a bootloader so that my computer can recognize the OpenBSD partition at startup. I have been trying to install... (0 Replies)
Discussion started by: t04st3r
0 Replies

3. Programming

compile java with GUI on unix system/putty

is it possible in the first place? if so, how should I go about it? (0 Replies)
Discussion started by: finalight
0 Replies
Login or Register to Ask a Question
Locale::Msgfmt(3pm)					User Contributed Perl Documentation				       Locale::Msgfmt(3pm)

NAME
Locale::Msgfmt - Compile .po files to .mo files SYNOPSIS
This module does the same thing as msgfmt from GNU gettext-tools, except this is pure Perl. The interface is best explained through examples: use Locale::Msgfmt; # Compile po/fr.po into po/fr.mo msgfmt({in => "po/fr.po", out => "po/fr.mo"}); # Compile po/fr.po into po/fr.mo and include fuzzy translations msgfmt({in => "po/fr.po", out => "po/fr.mo", fuzzy => 1}); # Compile all the .po files in the po directory, and write the .mo # files to the po directory msgfmt("po/"); # Compile all the .po files in the po directory, and write the .mo # files to the po directory, and include fuzzy translations msgfmt({in => "po/", fuzzy => 1}); # Compile all the .po files in the po directory, and write the .mo # files to the output directory, creating the output directory if # it doesn't already exist msgfmt({in => "po/", out => "output/"}); # Compile all the .po files in the po directory, and write the .mo # files to the output directory, and include fuzzy translations msgfmt({in => "po/", out => "output/", fuzzy => 1}); # Compile po/fr.po into po/fr.mo msgfmt("po/fr.po"); # Compile po/fr.po into po/fr.mo and include fuzzy translations msgfmt({in => "po/fr.po", fuzzy => 1}); COPYRIGHT &; LICENSE Copyright 2009 Ryan Niebur, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-21 Locale::Msgfmt(3pm)