Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19,815 changes: 19,815 additions & 0 deletions packaging/debian/storcli/StorCLI_RefMan_revf.pdf.uu

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions packaging/debian/storcli/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
storcli (1.19.04-1) unstable; urgency=low

* Initial release.

-- txaj <[email protected]> Fri, 10 June 2016 14:18:31 +0200
1 change: 1 addition & 0 deletions packaging/debian/storcli/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5
15 changes: 15 additions & 0 deletions packaging/debian/storcli/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Source: storcli
Section: admin
Priority: optional
Maintainer: txaj <[email protected]>
Build-Depends: debhelper (>= 5), sharutils
Standards-Version: 3.9.2
Homepage: http://docs.avagotech.com/docs/1.19.04_StorCLI.zip

Package: storcli
Architecture: amd64 i386
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MegaRAID StorCLI management tool
This package contains storcli, the management tool for LSI/Avago
RAID cards. It superseeds megacli.
.
238 changes: 238 additions & 0 deletions packaging/debian/storcli/copyright

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions packaging/debian/storcli/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

DESTDIR=$(CURDIR)/debian/storcli/usr
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)

build: build-arch build-indep
build-arch:
build-indep:

clean:
dh_testdir
dh_testroot
rm -f debian/StorCLI_RefMan_revf.pdf
dh_clean

install:
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
ifeq ($(DEB_BUILD_ARCH),amd64)
install -D -m 0755 $(CURDIR)/storcli64 \
$(DESTDIR)/sbin/storcli
endif
ifeq ($(DEB_BUILD_ARCH),i386)
install -D -m 0755 $(CURDIR)/storcli \
$(DESTDIR)/sbin/storcli
endif
# To create the uu file:
# uuencode debian/CLIGuide.pdf debian/CLIGuide.pdf > debian/CLIGuide.pdf.uu
uudecode debian/StorCLI_RefMan_revf.pdf.uu > debian/StorCLI_RefMan_revf.pdf
install -D -m 0644 $(CURDIR)/debian/StorCLI_RefMan_revf.pdf \
$(DESTDIR)/share/doc/storcli/StorCLI_RefMan_revf.pdf

binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install