wok view nilfs-utils/receipt @ rev 23681

Up libsvn (1.13.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 15:38:37 2020 +0000 (2020-04-26)
parents 401224c936cc
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="nilfs-utils"
4 VERSION="2.2.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="NILFS Filesystem user space tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://github.com/nilfs-dev/nilfs-utils"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
14 DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
15 BUILD_DEPENDS="autoconf automake libtool util-linux-blkid-dev util-linux-mount-dev
16 util-linux-uuid-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/etc $fs
35 cp -a $install/sbin $fs
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/sbin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }