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