blob: b1ec1273d78b14038f983c6c882c9af477c5a19b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=mpt-status
pkgver=1.2.0
pkgrel=0
pkgdesc="status inquiry tool for MPT devices"
url="http://www.red-bean.com/~mab/mpt-status.html"
arch="all"
license="GPL"
depends=""
makedepends="pciutils-dev"
install=""
subpackages="$pkgname-doc"
# XXX: main site seems to be down right now; we shadow the Debian patch anyway
source="http://ftp.de.debian.org/debian/pool/main/m/mpt-status/mpt-status_${pkgver}.orig.tar.gz
http://ftp.de.debian.org/debian/pool/main/m/mpt-status/mpt-status_${pkgver}-7.debian.tar.gz"
_builddir="${srcdir}/mpt-status-${pkgver}"
prepare() {
local i
cd "$_builddir"
mv "${srcdir}/debian" "${_builddir}"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
# apply debian patches too...
for i in $(cat ${_builddir}/debian/patches/series); do
case $i in
*.patch) msg $i; patch -p1 -i "${_builddir}/debian/patches/${i}" || return 1;;
esac
done
}
build() {
cd "$_builddir"
make
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir"/usr/sbin
make DESTDIR="$pkgdir" install
mkdir -p "$pkgdir"/usr/share/man/man8
cp man/mpt-status.8 "$pkgdir"/usr/share/man/man8
}
sha512sums="48d9ecb3d9b42f7731a048ba6147fc2edabbb3ac7936c3273fc613e661f54a66c9f240283a7b84040efd059539fb1c59172b74fad50781647f98644c3da25cac mpt-status_1.2.0.orig.tar.gz
f2de35cb781bef730e28449b75f0aa2b0b7f953dfda0ebd9231ff8b7e3649db34a25daa151ae0655458de2e07b6cbadf1b7e5977c5ac7585fa491bd071e36e00 mpt-status_1.2.0-7.debian.tar.gz"
|