2010-05-22 05:51:58 +08:00
|
|
|
#
|
2014-09-10 04:17:50 +08:00
|
|
|
# Chakra Packages for Chakra, part of chakraos.org
|
2010-05-22 05:51:58 +08:00
|
|
|
#
|
2014-09-10 04:17:50 +08:00
|
|
|
# Maintainer: AlmAck
|
2010-05-22 05:51:58 +08:00
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
pkgname=squashfs-tools
|
2014-09-10 04:17:50 +08:00
|
|
|
pkgver=4.3
|
2014-09-27 12:12:32 +08:00
|
|
|
pkgrel=2
|
2010-05-22 05:51:58 +08:00
|
|
|
pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux."
|
|
|
|
url="http://squashfs.sourceforge.net"
|
|
|
|
license=("GPL")
|
2014-01-15 07:09:36 +08:00
|
|
|
arch=('x86_64')
|
2014-09-10 04:17:50 +08:00
|
|
|
depends=('zlib' 'glibc' 'lzo2' 'xz' 'lz4')
|
2014-01-15 07:09:36 +08:00
|
|
|
source=("http://downloads.sourceforge.net/sourceforge/squashfs/squashfs${pkgver}.tar.gz")
|
2014-09-10 04:17:50 +08:00
|
|
|
md5sums=('d92ab59aabf5173f2a59089531e30dbf')
|
2010-05-22 05:51:58 +08:00
|
|
|
|
2011-02-18 08:27:57 +08:00
|
|
|
build() {
|
2014-01-15 07:09:36 +08:00
|
|
|
cd ${srcdir}/squashfs${pkgver}/${pkgname}
|
2014-09-10 04:17:50 +08:00
|
|
|
make XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1 COMP_DEFAULT=xz
|
2010-05-22 05:51:58 +08:00
|
|
|
}
|
|
|
|
|
2011-02-18 08:27:57 +08:00
|
|
|
package() {
|
2014-01-15 07:09:36 +08:00
|
|
|
cd ${srcdir}/squashfs${pkgver}/${pkgname}
|
2014-09-27 12:12:32 +08:00
|
|
|
install -Dm755 mksquashfs ${pkgdir}/usr/bin/mksquashfs
|
|
|
|
install -m755 unsquashfs ${pkgdir}/usr/bin/unsquashfs
|
|
|
|
}
|