blob: f6fb7eca2a6cc108aadaa901fd9219516f1550ab (
plain)
1 # Description: A Linux kernel module which provides many of the Solaris kernel APIs
2 # URL: http://zfsonlinux.org/
3 # Maintainer: James Mills, prologic at shortcircuit dot net dot au
4 #
5 # Depends on:
6
7 name=spl
8 version=0.6.4.2
9 release=1
10 source=(http://archive.zfsonlinux.org/downloads/zfsonlinux/$name/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 # Configure
16 ./configure --prefix=/usr \
17 --mandir=/usr/man
18
19 # dirty hacks ahoy!
20 find . -name "Makefile" -exec sed -i -e 's,/usr/src/spl-$(VERSION),/usr/include/spl,g' '{}' \;
21
22 # Build
23 make
24
25 # Package
26 make DESTDIR=$PKG install
27 }
|