wok view lzfse/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="lzfse"
4 VERSION="1.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Compression library and command line tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/lzfse/lzfse"
11 WGET_URL="$WEB_SITE/archive/$TARBALL"
12 TAGS="compression"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 make install INSTALL_PREFIX=$DESTDIR/usr/
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr
24 cp -a $install/usr/bin $fs/usr/
25 }