Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2283 - (hide annotations)
Mon Mar 7 17:09:50 2011 UTC (2 years, 2 months ago) by acrux
File size: 730 byte(s)
nvsetenv: added nvsetvol
1 cjg 720 # Description: tool used to write on apple nvram memory
2 acrux 2283 # Maintainer: CRUX PPC team - http://cruxppc.org/
3 cjg 720 # URL: http://www.debian.org/
4     # PPC!=
5    
6     name=nvsetenv
7     version=1.1.3
8 cjg 1164 release=24
9 cjg 720 source=(http://ftp.debian.org/debian/pool/main/p/powerpc-utils/powerpc-utils_${version}.orig.tar.gz \
10     http://ftp.debian.org/debian/pool/main/p/powerpc-utils/powerpc-utils_${version}-$release.diff.gz \
11     nvsetenv.8)
12    
13     build() {
14 acrux 2283 cd pmac-utils
15     zcat $SRC/powerpc-utils_${version}-$release.diff.gz | patch -p1
16    
17     make {nvsetenv,nvsetvol}
18    
19     mkdir -p $PKG/usr/{sbin,man}
20    
21     install -D -m 755 {nvsetenv,nvsetvol} $PKG/usr/sbin/
22    
23     install -D -m 644 $SRC/nvsetenv.8 $PKG/usr/man/man8/nvsetenv.8
24     install -D -m 644 nvsetvol.8 $PKG/usr/man/man8/nvsetvol.8
25 cjg 720 }