Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Sun Oct 4 14:31:24 2009 UTC (3 years, 7 months ago) by cjg
File size: 625 byte(s)
importing opt
1 # Description: package for creating, destroying, resizing, checking and copying partitions and filesystem
2 # URL: http://www.gnu.org/software/parted/
3 # Maintainer: acrux, acrux at linuxmail dot org
4 # Depends on: e2fsprogs, readline, reiserfsprogs
5 # PPC!=
6
7 name=parted
8 version=1.8.8
9 release=3
10 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
11
12 build () {
13 cd $name-$version
14
15 ./configure --prefix=/usr --mandir=/usr/man \
16 --with-gnu-ld --without-readline --enable-fs \
17 --disable-Werror --disable-rpath \
18 --disable-nls --disable-debug
19
20
21 make
22 make DESTDIR=$PKG install
23
24 rm -rf $PKG/usr/{share/info,man/pt_BR}
25 }