diff options
Diffstat (limited to 'main/squashfs-tools/APKBUILD')
-rw-r--r-- | main/squashfs-tools/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/main/squashfs-tools/APKBUILD b/main/squashfs-tools/APKBUILD new file mode 100644 index 0000000000..8af448562f --- /dev/null +++ b/main/squashfs-tools/APKBUILD @@ -0,0 +1,26 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=squashfs-tools +pkgver=4.0 +pkgrel=0 +pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux." +url="http://squashfs.sourceforge.net" +license="GPL" +depends= +makedepends="zlib-dev" +source="http://downloads.sourceforge.net/sourceforge/squashfs/squashfs$pkgver.tar.gz + squashfs-tools-4.0-uclibc-get_nprocs.patch" + +build() { + cd "$srcdir"/squashfs$pkgver/$pkgname + patch -p2 -i "$srcdir"/squashfs-tools-4.0-uclibc-get_nprocs.patch \ + || return 1 + make +} + +package() { + cd "$srcdir"/squashfs$pkgver/$pkgname + mkdir -p "$pkgdir"/sbin + cp -a mksquashfs unsquashfs "$pkgdir"/sbin +} +md5sums="a3c23391da4ebab0ac4a75021ddabf96 squashfs4.0.tar.gz +761580c100eeffb60ebbda62d724bd3f squashfs-tools-4.0-uclibc-get_nprocs.patch" |