milis/talimatname/genel/advcp/talimat

28 lines
727 B
Plaintext
Raw Normal View History

# Description: cp ve mv komutlarının ilerleme çubuğu (progressbar) için yamalanmış versiyonu.
2016-09-14 21:28:42 +02:00
# URL: https://www.gnu.org/software/coreutils/
# Packager: milisarge
# Depends on:
name=advcp
_name=coreutils
version=8.24
release=1
source=(ftp://ftp.gnu.org/gnu/$_name/$_name-$version.tar.xz
advcpmv-${version}.patch)
build() {
export FORCE_UNSAFE_CONFIGURE=1
cd ${SRC}/${_name}-${version}
2017-01-30 23:55:06 +01:00
2016-09-14 21:28:42 +02:00
patch -p1 -i ${SRC}/advcpmv-${version}.patch
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--enable-no-install-program=groups,hostname,kill,uptime
make $MAKEFLAGS -j1
cd ${SRC}/${_name}-${version}
install -D src/cp ${PKG}/usr/bin/acp
install -D src/mv ${PKG}/usr/bin/amv
}