wok-current view quota/receipt @ rev 22067
updated udevil again (0.4.3 -> 0.4.4)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 25 14:56:03 2019 +0100 (2019-10-25) |
parents | 2a403468837c |
children | ec3fce5ac742 |
line source
1 # SliTaz package receipt.
3 PACKAGE="quota"
4 VERSION="4.01"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tools for the Linux Diskquota system"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://quota.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/linuxquota/quota-tools/$VERSION/$TARBALL"
13 DEPENDS="e2fsprogs"
14 BUILD_DEPENDS="gettext e2fsprogs-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make ROOTDIR=$DESTDIR install 2>&1 | grep -v '*.2'
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/etc $fs
35 }