7 Commits

Author SHA1 Message Date
geos_one
51dd823f9d Change to ncurses6 also for 32bit 2025-08-06 16:22:31 +02:00
geos_one
402cac26b3 Change to ncurses6 2025-08-06 16:19:45 +02:00
Mario Fetka
76a2977b3e update compat 2023-07-01 12:03:50 +02:00
Mario Fetka
f7ec11e06e Bump 2019-08-02 14:46:21 +02:00
Mario Fetka
8078b3f1a2 Merge tag 'upstream/8.07.14'
Upstream version 8.07.14
2016-05-26 18:05:30 +02:00
Mario Fetka
65aa31946c Imported Upstream version 8.07.14 2016-05-26 18:05:29 +02:00
Mario Fetka
2c372eb035 import 2016-05-26 18:05:18 +02:00
4 changed files with 12 additions and 2 deletions

8
debian/changelog vendored
View File

@@ -1,3 +1,11 @@
megacli (8.7.14.1) UNRELEASED; urgency=medium
* Rebuild for all Distros
* import
* Imported Upstream version 8.07.14
-- Mario Fetka <mario@localhost.localdomain> Thu, 26 May 2016 18:01:20 +0200
megacli (8.07.14-1) unstable; urgency=medium
* New upstream release.

2
debian/compat vendored
View File

@@ -1 +1 @@
5
7

2
debian/control vendored
View File

@@ -2,7 +2,7 @@ Source: megacli
Section: admin
Priority: optional
Maintainer: Adam Cécile (Le_Vert) <gandalf@le-vert.net>
Build-Depends: debhelper (>= 5)
Build-Depends: debhelper (>= 5), libncurses6, patchelf
Standards-Version: 3.9.5
Homepage: http://www.lsi.com/support/Pages/Download-Results.aspx?keyword=megacli

2
debian/rules vendored
View File

@@ -22,10 +22,12 @@ install: build
install $(CURDIR)/debian/megacli.wrapper $(CURDIR)/debian/megacli/usr/sbin/megacli
ifeq ($(DEB_BUILD_ARCH),amd64)
install $(CURDIR)/amd64/opt/MegaRAID/MegaCli/MegaCli64 $(CURDIR)/debian/megacli/usr/lib/megacli/megacli.real
patchelf --replace-needed libncurses.so.5 libncurses.so.6 $(CURDIR)/debian/megacli/usr/lib/megacli/megacli.real
install $(CURDIR)/amd64/opt/MegaRAID/MegaCli/libstorelibir-2.so.14.07-0 $(CURDIR)/debian/megacli/usr/lib/megacli/libstorelibir-2.so.14.07-0
endif
ifeq ($(DEB_BUILD_ARCH),i386)
install $(CURDIR)/i386/opt/MegaRAID/MegaCli/MegaCli $(CURDIR)/debian/megacli/usr/lib/megacli/megacli.real
patchelf --replace-needed libncurses.so.5 libncurses.so.6 $(CURDIR)/debian/megacli/usr/lib/megacli/megacli.real
# Seem to be x64 only
#install $(CURDIR)/i386/opt/MegaRAID/MegaCli/libstorelibir-2.so.14.07-0 $(CURDIR)/debian/megacli/usr/lib/megacli/libstorelibir-2.so.14.07-0
endif