
Removed dmraid, iniparser, jam, libatasmart, libblockdev, libbytesize, libyaml, mozjs, ndctl, polkit, rpi-userland, sccache from base Removed docdir, sysconfdir and prefix quotes from autoconf build option and similar options from various packages in base Added apparch variables to base/{acpid,dmidecode,gnu-efi,pciutils,syslinux} Added udev rules build option to base/alsa-utils Discarded --offline option in base/cbindgen Upgraded base/cmake to 3.26.4 Added --without-x build option to base/dialog Upgraded base/gawk to 5.2.2 Upgraded base/glib to 2.76.3 Disabled tests and examples in base/gloox Upgraded base/gnupg2 to 2.2.41 Upgraded base/gnutls to 3.8.0 Upgraded base/gpgme to 1.20.0 Fixed make command option ordering in base/{hdparm,p7zip} Upgraded base/libgpg-error to 1.47 Upgraded base/libjpeg-turbo to 2.1.5.1 Upgraded base/libuv to 1.45.0 Discarded some build options to base/libxml2 Upgraded base/llvm to 15.0.7 Fixed subshell code in base/lua53 Removed --prefix= in several python package build files, added /usr as prefix in base/python3 Upgraded base/musl to 1.2.4 Upgraded base/nettle to 3.9 Upgraded base/nghttp2 to 1.53.0 Added --without-trust-paths to base/p11-kit Upgraded base/qpdf to 11.4.0 Discarded base/rpi-userland Upgraded base/rust to 1.69.0 Upgraded base/sqlite to 3420000 Added $CFLAGS to base/unzip Added -fPIC option to base/yasm Updated base build list
42 lines
1,009 B
Text
Executable file
42 lines
1,009 B
Text
Executable file
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=unzip
|
|
version=60
|
|
build=1sml
|
|
homepage="http://infozip.sourceforge.net/UnZip.html"
|
|
download="https://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz"
|
|
desc="Decompression and extraction utility for archives compressed in .zip format"
|
|
requires="musl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf "$app$version"
|
|
|
|
tar xf $srcdir/$app$version.tar.?z
|
|
cd "$app$version"
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
make -f unix/Makefile flags \
|
|
CFLAGS_BZ="$CFLAGS" \
|
|
CC="$CC" STRIP=true LF2=
|
|
|
|
sed -i 's@-DNO_LCHMOD@@' flags
|
|
sed -i "s@-O3@$CFLAGS@" flags
|
|
|
|
make -f unix/Makefile generic
|
|
|
|
make prefix="$pkg" -f unix/Makefile install
|
|
|
|
mkdir -p $pkg/share/man
|
|
mv $pkg/man/man* $pkg/share/man/
|
|
rmdir $pkg/man
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
7fa0c4db56062b6615969263f23ac18b1eada893e03e76752862e450dc5bfbcf8d99fa7f9cc31ffe8b8bdb014bb5b7033759eb719fca62d52ce98e9dcb9327a0 unzip60.tar.lz
|
|
"
|