2007-10-10 16:18:45 +02:00
|
|
|
# Description: Tools for the Linux quota system
|
|
|
|
# URL: http://sourceforge.net/projects/linuxquota/
|
|
|
|
# Packager: Mikhail Kolesnik, mike at openbunker dot org
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2010-04-16 09:20:13 +02:00
|
|
|
# Depends on: e2fsprogs tcp_wrappers
|
2007-10-10 16:18:45 +02:00
|
|
|
|
|
|
|
name=quota
|
2014-03-01 18:41:43 +01:00
|
|
|
version=4.01
|
2012-06-27 18:43:21 +02:00
|
|
|
release=1
|
2010-09-28 12:37:23 +02:00
|
|
|
source=(http://download.sourceforge.net/linuxquota/$name-$version.tar.gz \
|
2012-06-27 18:43:21 +02:00
|
|
|
warnquota.conf quotagrpadmins)
|
2007-10-10 16:18:45 +02:00
|
|
|
|
|
|
|
build(){
|
|
|
|
cd $name-tools
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2012-06-27 18:43:21 +02:00
|
|
|
--sysconfdir=/etc \
|
2007-10-10 16:18:45 +02:00
|
|
|
--enable-nls=no \
|
|
|
|
--enable-altformat=yes \
|
|
|
|
--enable-rpc=yes \
|
|
|
|
--enable-nis=no \
|
|
|
|
--enable-bsd_behaviour=yes \
|
|
|
|
--enable-rootsbin=yes
|
|
|
|
make
|
|
|
|
make install ROOTDIR=$PKG
|
2010-06-03 11:15:03 +00:00
|
|
|
rm -r $PKG/usr/include
|
2012-06-27 18:43:21 +02:00
|
|
|
install -D -m 644 $SRC/warnquota.conf $PKG/etc/warnquota.conf
|
|
|
|
install -D -m 644 $SRC/quotagrpadmins $PKG/etc/quotagrpadmins
|
2007-10-10 16:18:45 +02:00
|
|
|
}
|