CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
tar: updated to 1.30
[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.12
8 release=2
9 source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.bz2 \
10 CVE-2017-7516.patch)
11
12 build() {
13 cd $name-$version
14 patch -p1 -i $SRC/CVE-2017-7516.patch
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --disable-nls
19 make
20 make DESTDIR=$PKG install
21 rm -r $PKG/usr/{libexec,share/info}
22 rm -r $PKG/usr/share/man/man8
23 }