blob: a6e8a0b211ed191b0c27835a9dcad28243a880ca (
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
}
md5sums="e836a0dc05746b45ee1b77e475c2a76b mpt-status_1.2.0.orig.tar.gz
18897cdd77a3ecbea13ca13d53b40796 mpt-status_1.2.0-7.debian.tar.gz"
|