blob: ccfaea707d46dd78cea084acb021f3a8d417655a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=squashfs-tools
pkgver=4.1
pkgrel=0
pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux."
url="http://squashfs.sourceforge.net"
arch="x86 x86_64"
license="GPL"
depends=
makedepends="zlib-dev attr-dev"
source="http://downloads.sourceforge.net/sourceforge/squashfs/squashfs$pkgver.tar.gz"
build() {
cd "$srcdir"/squashfs$pkgver/$pkgname
make
}
package() {
cd "$srcdir"/squashfs$pkgver/$pkgname
mkdir -p "$pkgdir"/sbin
cp -a mksquashfs unsquashfs "$pkgdir"/sbin
}
md5sums="8e1b2b96f5d5f3fe48fef226ae8cd341 squashfs4.1.tar.gz"
|