Package Details: hptwebgui 2.1.5.130409-2

Package Base: hptwebgui
Description: WebGUI for HighPoint RocketRaid 2xxx/3xxx/4xxx RAID Controllers
Upstream URL: http://www.highpoint-tech.com
Category: system
Licenses: custom
Submitter: NiNjA
Maintainer: NiNjA
Last Packager: None
Votes: 0
First Submitted: 2013-03-28 15:31
Last Updated: 2014-02-07 17:00

Dependencies (0)

Required by (0)

Sources

Latest Comments

Comment by NiNjA

2013-12-30 17:24

Thanks! I've updated the PKGBUILD.

Comment by tmatysik

2013-12-30 04:37

Here's an updated PKGBUILD for v2.1.5-130409:

# Contributor: Thomas Matysik <thomas at matysik dot co dot nz>
# Contributor: Heine Pedersen <heinep at gmail dot com>

_realname=WebGUI-Linux
_pkgver=2.1.5
_pkgrelmajor=13
_pkgrelminor=0409

pkgname=hptwebgui
pkgver=${_pkgver}.${_pkgrelmajor}${_pkgrelminor}
pkgrel=1

pkgdesc="WebGUI for HighPoint RocketRaid 2xxx/3xxx/4xxx RAID Controllers"
arch=('x86_64')
url="http://www.highpoint-tech.com"
license=('custom')
makedepends=('rpmextract')
provides=('hptwebgui')
conflicts=('hpt-cli')
install=hptwebgui.install
source=(http://www.highpoint-tech.com/BIOS_Driver/HRM/Linux/${_realname}-v${_pkgver}-${_pkgrelmajor}${_pkgrelminor}.tgz
hptwebgui.service)

md5sums=('e65216725b279e74d583768a989e2ee7'
'f44af0b640742dfcc08574d61da56744')

build() {
rpmextract.sh "${srcdir}"/hptsvr-https-${_pkgver}-${_pkgrelmajor}.${_pkgrelminor}.${arch}.rpm
install -m755 -d "${pkgdir}/usr/bin"
install -m755 -d "${pkgdir}/usr/share/hpt"
install -m755 -d "${pkgdir}/usr/lib/systemd/system"
install -m755 "${srcdir}/usr/bin/hptsvr" "${pkgdir}/usr/bin/"
install -m644 "${srcdir}/hptwebgui.service" "${pkgdir}/usr/lib/systemd/system/"
cp -R "${srcdir}/usr/share/hpt/"* "${pkgdir}/usr/share/hpt"
}