blob: 20f63583a1977d31b2116af948aff25f3947c1a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name=p7zip
version=17.06
release=1
source="https://github.com/$name-project/$name/archive/v$version/$name-$version.tar.gz"
build() {
sed '/^gzip/d' -i install.sh
sed -i '160a if(_buffer == nullptr || _size == _pos) return E_FAIL;' CPP/7zip/Common/StreamObjects.cpp
make all3
make DEST_HOME=/usr \
DEST_MAN=/usr/share/man \
DEST_DIR=$PKG install
}
|