core/squashfs-tools/PKGBUILD

26 lines
807 B
Bash
Raw Normal View History

2010-05-22 05:51:58 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=squashfs-tools
2014-01-15 07:09:36 +08:00
pkgver=4.2
pkgrel=1
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')
depends=('zlib' 'glibc' 'lzo2' 'xz')
2014-01-15 07:09:36 +08:00
source=("http://downloads.sourceforge.net/sourceforge/squashfs/squashfs${pkgver}.tar.gz")
md5sums=('1b7a781fb4cf8938842279bd3e8ee852')
2010-05-22 05:51:58 +08:00
build() {
2014-01-15 07:09:36 +08:00
cd ${srcdir}/squashfs${pkgver}/${pkgname}
make XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 COMP_DEFAULT=xz
2010-05-22 05:51:58 +08:00
}
package() {
2014-01-15 07:09:36 +08:00
cd ${srcdir}/squashfs${pkgver}/${pkgname}
install -Dm755 mksquashfs ${pkgdir}/sbin/mksquashfs
install -m755 unsquashfs ${pkgdir}/sbin/unsquashfs
}