wok-current annotate quota/receipt @ rev 24206
updated perl-fcgi (0.79 -> 0.82)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:35:08 2021 +0100 (2021-12-31) |
parents | 03c130fb62b4 |
children | e919c5a2742d |
rev | line source |
---|---|
pascal@14762 | 1 # SliTaz package receipt. |
pascal@14762 | 2 |
pascal@14762 | 3 PACKAGE="quota" |
Hans-G?nter@23603 | 4 VERSION="4.05" |
pascal@14762 | 5 CATEGORY="system-tools" |
Hans-G?nter@23603 | 6 SHORT_DESC="Tools for the Linux Diskquota system." |
pascal@14762 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14762 | 8 LICENSE="GPL2" |
Hans-G?nter@23603 | 9 WEB_SITE="https://sourceforge.net/projects/linuxquota/" |
Hans-G?nter@23603 | 10 |
pascal@14762 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@14762 | 12 WGET_URL="$SF_MIRROR/linuxquota/quota-tools/$VERSION/$TARBALL" |
pascal@14762 | 13 |
pascal@14762 | 14 DEPENDS="e2fsprogs" |
Hans-G?nter@23603 | 15 BUILD_DEPENDS="e2fsprogs-dev gettext" |
pascal@14762 | 16 |
pascal@14762 | 17 # Rules to configure and make the package. |
pascal@14762 | 18 compile_rules() |
pascal@14762 | 19 { |
Hans-G?nter@23603 | 20 ./configure \ |
Hans-G?nter@23603 | 21 --prefix=/usr \ |
Hans-G?nter@23603 | 22 --sysconfdir=/etc \ |
Hans-G?nter@23603 | 23 --mandir=/usr/share/man \ |
pascal@14762 | 24 $CONFIGURE_ARGS && |
pascal@14762 | 25 make && |
pascal@14763 | 26 make ROOTDIR=$DESTDIR install 2>&1 | grep -v '*.2' |
pascal@14762 | 27 } |
pascal@14762 | 28 |
pascal@14762 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14762 | 30 genpkg_rules() |
pascal@14762 | 31 { |
pascal@14762 | 32 mkdir -p $fs/usr |
Hans-G?nter@23603 | 33 |
Hans-G?nter@23603 | 34 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@23603 | 35 cp -a $install/usr/sbin $fs/usr |
Hans-G?nter@23603 | 36 cp -a $install/etc $fs |
pascal@14762 | 37 } |