Code Search for Developers
 
 
  

samba.xml from eVDR at Krugle


Show samba.xml syntax highlighted

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE alfs SYSTEM "../DTD/ALFS.dtd" [
<!ENTITY % general_entities SYSTEM "../config/general.ent">
<!ENTITY % files_entities SYSTEM "../config/files.ent">
<!ENTITY % package_entities SYSTEM "../config/packages/filer.ent">

%general_entities;
%package_entities;
%files_entities;
]>

<alfs>

<package name="samba" version="&samba-version;">
        <stage name="Unpacking">
                <unpack>
                        <archive>&packages_dir;/&samba-package;</archive>
                        <destination>&build_dir;</destination>
                </unpack>
        </stage>

        <stage name="Installing">
                <stageinfo>
                        <base>&build_dir;/&samba-directory;/source</base>
                </stageinfo>

                <configure>
                        <param>--prefix=/srv/samba</param>
                        <param>--sysconfdir=/etc/samba</param>
                        <param>--localstatedir=/var</param>
                        <param>--with-privatedir=/etc/samba</param>
                        <param>--with-lockdir=/var/lock/samba</param>
                        <param>--with-piddir=/var/run</param>
                        <param>--with-configdir=/etc/samba</param>
                        <param>--with-logfilebase=/var/log/samba</param>
                        <param>--with-libdir=/srv/samba/lib</param>
                        <param>--with-smbmount</param>
                        <param>--with-syslog</param>
                        <param>--includedir=/devel/include </param>
                        <param>--infodir=/devel/info --mandir=/devel/man</param>
									
									
                </configure>

                <make />


                <make>
                        <param>install</param>
                </make>

		<execute command="groupadd">
			<param>nobody</param>
		</execute>
		
		<execute command="useradd">
			<param>-g nobody</param>
			<param>nobody</param>
		</execute>
	</stage>

        <stage name="post-install">

                <execute command="touch">
                        <param>&LFS-pkgmgr;/samba-&samba-version;</param>
                </execute>

		<move>
		    <source>/srv/samba/include/*</source>
		    <destination>/devel/include</destination>
		</move>

        </stage>

        <stage name="Cleanup">
                <remove>&build_dir;/&samba-directory;</remove>
        </stage>
</package>

</alfs>




See more files for this project here

eVDR

The aim of eVDR is to build a fully operational Video Disk Recorder entirely from scratch. That means it provides a step-by-step instructions for building your own customized Linux Video Disk Recorder box entirely from source.

Project homepage: http://sourceforge.net/projects/evdr
Programming language(s): Shell Script,XML
License: gpl2

  samba.xml