wok view nilfs-utils/receipt @ rev 18639

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