mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
690 B
Bash
24 lines
690 B
Bash
|
# $Id: PKGBUILD 35926 2009-04-18 09:25:33Z tpowa $
|
||
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||
|
# Original TU: Jeff Mickey <j@codemac.net>
|
||
|
# Contributor: ciccio.a
|
||
|
|
||
|
pkgname=squashfs-tools
|
||
|
pkgver=4.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux."
|
||
|
url="http://squashfs.sourceforge.net"
|
||
|
license=("GPL")
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('zlib' 'glibc')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/squashfs/squashfs$pkgver.tar.gz)
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $startdir/src/squashfs$pkgver/$pkgname
|
||
|
make || return 1
|
||
|
mkdir -p $startdir/pkg/sbin
|
||
|
cp -a mksquashfs unsquashfs $startdir/pkg/sbin
|
||
|
}
|
||
|
md5sums=('a3c23391da4ebab0ac4a75021ddabf96')
|