CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
binutils: update to 2.22. Removed host's texinfo dependency.
[crossrootfs.git] / cpio / Pkgfile
1 # Description: A tool to copy files into or out of a cpio or tar archive
2 # URL: http://www.gnu.org/software/cpio/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6 name=cpio
7 version=2.11
8 release=1
9 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
10 cpio-2.11-stat.patch)
11
12 build() {
13 cd $name-$version
14 patch -p1 -i $SRC/cpio-2.11-stat.patch
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --disable-nls
20 make
21 make DESTDIR=$PKG install
22 rm -r $PKG/usr/{share,libexec}
23 rm $PKG/usr/man/man1/mt.1
24 }