blob: b0e43e8c7e6af93e445efcf0355716fd1d6d30cf (
plain)
1 # Description: Tools for CramFs (Compressed ROM File System)
2 # URL: https://github.com/npitre/cramfs-tools
3 # Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
4 # Depends on: zlib
5
6 name=cramfs-tools
7 version=2.1
8 release=1
9 source=(https://github.com/npitre/$name/archive/v$version/$name-v$version.tar.gz
10 fix-build-undefined-reference-to-major-and-minor-1.1.diff)
11
12 build () {
13 cd $name-$version
14
15 patch -p1 -i $SRC/fix-build-undefined-reference-to-major-and-minor-1.1.diff
16
17 make CFLAGS="$CFLAGS -Wall -W"
18
19 install -d $PKG/usr/bin
20 install -m755 {cramfsck,mkcramfs} $PKG/usr/bin/
21 }
|