mirror of
https://github.com/eLvErDe/hwraid.git
synced 2025-07-21 04:44:22 +02:00
Import sas2ircu
This commit is contained in:
parent
c1371db72c
commit
0c5906c391
17
packaging/debian/sas2ircu/changelog
Normal file
17
packaging/debian/sas2ircu/changelog
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
sas2ircu (16.00.00.00-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Thu, 25 Jul 2013 00:22:04 +0200
|
||||||
|
|
||||||
|
sas2ircu (13.00.00.00-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release (Closes: #205).
|
||||||
|
|
||||||
|
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Tue, 17 Jul 2012 21:27:50 +0200
|
||||||
|
|
||||||
|
sas2ircu (5.00.00.00-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Wed, 08 Dec 2010 15:41:51 +0100
|
1
packaging/debian/sas2ircu/compat
Normal file
1
packaging/debian/sas2ircu/compat
Normal file
@ -0,0 +1 @@
|
|||||||
|
5
|
13
packaging/debian/sas2ircu/control
Normal file
13
packaging/debian/sas2ircu/control
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Source: sas2ircu
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Adam Cécile (Le_Vert) <gandalf@le-vert.net>
|
||||||
|
Build-Depends: debhelper (>= 5)
|
||||||
|
Standards-Version: 3.9.4
|
||||||
|
|
||||||
|
Package: sas2ircu
|
||||||
|
Architecture: i386 amd64 powerpc
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: LSI Logic Fusion MPT SAS2 command line management tool
|
||||||
|
Tool to read and setup LSI Logic Fusion MTP SAS2 HW RAID HBAs (mpt2sas
|
||||||
|
driver).
|
26
packaging/debian/sas2ircu/copyright
Normal file
26
packaging/debian/sas2ircu/copyright
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
This package was debianized by Adam Cécile (Le_Vert) <gandalf@le-vert.net> on
|
||||||
|
Wed, 08 Dec 2010 15:41:51 +0100.
|
||||||
|
|
||||||
|
It was downloaded from:
|
||||||
|
http://www.lsi.com/support/Pages/download-search.aspx
|
||||||
|
(enter "sas2ircu" in the search box)
|
||||||
|
|
||||||
|
Upstream Author:
|
||||||
|
|
||||||
|
LSI Corporation
|
||||||
|
|
||||||
|
Copyright:
|
||||||
|
|
||||||
|
Copyright (C) 2009-2012 LSI Corporation
|
||||||
|
|
||||||
|
License:
|
||||||
|
|
||||||
|
LSI Corporation, All Rights Reserved.
|
||||||
|
|
||||||
|
The Debian packaging is Copyright (C) 2010-2013 Adam Cécile (Le_Vert)
|
||||||
|
<gandalf@le-vert.net> and is licensed under the GPL,
|
||||||
|
see `/usr/share/common-licenses/GPL'.
|
||||||
|
|
||||||
|
Sources have been repacked (windows, solaris... binaries removed,
|
||||||
|
PDF userguide added) from:
|
||||||
|
fd59a542e22eb3ed0ea7210d5ce8f22e SAS2IRCU_P16.zip
|
1
packaging/debian/sas2ircu/dirs
Normal file
1
packaging/debian/sas2ircu/dirs
Normal file
@ -0,0 +1 @@
|
|||||||
|
usr/sbin
|
1
packaging/debian/sas2ircu/docs
Normal file
1
packaging/debian/sas2ircu/docs
Normal file
@ -0,0 +1 @@
|
|||||||
|
SAS2IRCU_User_Guide.pdf
|
47
packaging/debian/sas2ircu/rules
Executable file
47
packaging/debian/sas2ircu/rules
Executable file
@ -0,0 +1,47 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
||||||
|
|
||||||
|
build:
|
||||||
|
build-arch:
|
||||||
|
build-indep:
|
||||||
|
|
||||||
|
clean:
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_clean
|
||||||
|
|
||||||
|
install:
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_clean -k
|
||||||
|
dh_installdirs
|
||||||
|
ifeq ($(DEB_BUILD_ARCH),amd64)
|
||||||
|
install $(CURDIR)/sas2ircu_linux_x86_rel/sas2ircu $(CURDIR)/debian/sas2ircu/usr/sbin/sas2ircu
|
||||||
|
endif
|
||||||
|
ifeq ($(DEB_BUILD_ARCH),i386)
|
||||||
|
install $(CURDIR)/sas2ircu_linux_x86_rel/sas2ircu $(CURDIR)/debian/sas2ircu/usr/sbin/sas2ircu
|
||||||
|
endif
|
||||||
|
ifeq ($(DEB_BUILD_ARCH),powerpc)
|
||||||
|
install $(CURDIR)/sas2ircu_linux_ppc64_rel/sas2ircu $(CURDIR)/debian/sas2ircu/usr/sbin/sas2ircu
|
||||||
|
endif
|
||||||
|
|
||||||
|
binary-indep:
|
||||||
|
binary-arch: build install
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_installchangelogs Readme_Release_Notes_SAS2IRCU_Phase_16.00.00.00.txt
|
||||||
|
dh_installdocs
|
||||||
|
dh_compress -Xusr/share/doc/sas2ircu/SAS2IRCU_User_Guide.pdf
|
||||||
|
dh_fixperms
|
||||||
|
dh_installdeb
|
||||||
|
dh_shlibdeps
|
||||||
|
dh_gencontrol
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
|
||||||
|
binary: binary-arch
|
||||||
|
.PHONY: build clean binary-indep binary-arch binary install
|
Loading…
x
Reference in New Issue
Block a user