mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:47:14 +08:00
28 lines
849 B
Bash
28 lines
849 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakraos.org
|
|
#
|
|
# Maintainer: AlmAck
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=squashfs-tools
|
|
pkgver=4.3
|
|
pkgrel=2
|
|
pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux."
|
|
url="http://squashfs.sourceforge.net"
|
|
license=("GPL")
|
|
arch=('x86_64')
|
|
depends=('zlib' 'glibc' 'lzo2' 'xz' 'lz4')
|
|
source=("http://downloads.sourceforge.net/sourceforge/squashfs/squashfs${pkgver}.tar.gz")
|
|
md5sums=('d92ab59aabf5173f2a59089531e30dbf')
|
|
|
|
build() {
|
|
cd ${srcdir}/squashfs${pkgver}/${pkgname}
|
|
make XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1 COMP_DEFAULT=xz
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/squashfs${pkgver}/${pkgname}
|
|
install -Dm755 mksquashfs ${pkgdir}/usr/bin/mksquashfs
|
|
install -m755 unsquashfs ${pkgdir}/usr/bin/unsquashfs
|
|
}
|