2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-24 02:19:53 +00:00

added elilo deb packaging

Former-commit-id: c64ae0e105c3a2f758ba018e1ee2817c3a724460
This commit is contained in:
arifali 2012-05-13 19:54:00 +00:00
parent f2c8a5acdd
commit 7438530668
6 changed files with 92 additions and 0 deletions

5
elilo/debian/changelog Normal file
View File

@ -0,0 +1,5 @@
elilo-xcat (1.2.1-1) unstable; urgency=low
* Initial release for xCAT
-- Arif Ali <aali@ocf.co.uk> Mon, 30 Apr 2012 18:32:00 +0100

13
elilo/debian/control Normal file
View File

@ -0,0 +1,13 @@
Source: elilo-xcat
Section: net
Priority: extra
Maintainer: Arif Ali <aali@ocf.co.uk>
Build-Depends: debhelper (>= 7.0.50~), gnu-efi
Standards-Version: 3.8.4
Package: elilo-xcat
Section: utils
Priority: extra
Architecture: any
Description: Open source implementation of Service Location Protocol V2
Open source implementation of Service Location Protocol V2

View File

@ -0,0 +1 @@
../../elilo-xcat.patch

View File

@ -0,0 +1 @@
elilo-xcat.patch

64
elilo/debian/rules Executable file
View File

@ -0,0 +1,64 @@
#!/usr/bin/make -f
# Comment this to turn off verbose mode.
export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
build: build-stamp
build-stamp:
dh_testdir
dh_quilt_patch
$(MAKE)
clean:
dh_testdir
dh_testroot
#$(MAKE) distclean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
mkdir -p `pwd`/debian/tmp/tftpboot/xcat
cp elilo.efi `pwd`/debian/tmp/tftpboot/xcat/elilo-x64.efi
# Build architecture-independent files here.
binary-indep:
dh_testdir -i
dh_testroot -i
dh_installdocs -i
dh_installchangelogs -i
dh_compress -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir -a
dh_testroot -a
dh_installinit -a
dh_installdocs -a
dh_installexamples -a
# dh_installmenu
# dh_installcron
dh_installdebconf -a
dh_installchangelogs -a
dh_link -a
dh_strip -a
dh_compress -a
dh_fixperms -a
dh_makeshlibs -a
dh_installdeb -a
dh_shlibdeps -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install

8
elilo/make_deb.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
tar xvfz elilo-3.14-source.tar.gz
cd elilo
cp -rL ../debian .
dpkg-buildpackage
cd -
rm -rf elilo